rust/src/test/ui/impl-trait/issue-21659-show-relevant-trait-impls-3.rs

23 lines
316 B
Rust
Raw Normal View History

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