rust/tests/ui/span/issue-37767.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
499 B
Rust
Raw Normal View History

trait A {
fn foo(&mut self) {}
}
trait B : A {
fn foo(&mut self) {}
}
fn bar<T: B>(a: &T) {
2017-11-20 12:13:27 +00:00
a.foo() //~ ERROR multiple applicable items
}
trait C {
fn foo(&self) {}
}
trait D : C {
fn foo(&self) {}
}
fn quz<T: D>(a: &T) {
2017-11-20 12:13:27 +00:00
a.foo() //~ ERROR multiple applicable items
}
trait E : Sized {
fn foo(self) {}
}
trait F : E {
fn foo(self) {}
}
fn foo<T: F>(a: T) {
2017-11-20 12:13:27 +00:00
a.foo() //~ ERROR multiple applicable items
}
fn pass<T: C>(a: &T) {
a.foo()
}
fn main() {}