trait Foo {
fn foo(&self, a: A) -> A {
a
}
}
trait NotRelevant {
fn nr(&self, a: A) -> A {
a
}
}
struct Bar;
impl NotRelevant for Bar {}
fn main() {
let f1 = Bar;
f1.foo(1usize);
//~^ error: method named `foo` found for struct `Bar` in the current scope
}