Bound type parameters can call supertrait methods, objects should be able to as well. ``` trait A { fn f() } trait B: A { } fn foo(b: &B) { b.f() } ```