rust/src/test/ui/issues/issue-65284-suggest-generic-trait-bound.rs

12 lines
178 B
Rust
Raw Normal View History

2019-10-10 18:51:36 -05:00
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() {}