blob: e0eaafdfc2f2213e3bb1da7166d2ce0615b99eaf [file] [log] [blame]
trait Foo {
fn foo(&self);
}
trait Bar {}
fn do_stuff<T : Bar>(t : T) {
t.foo() //~ ERROR no method named `foo` found for type `T` in the current scope
}
fn main() {}