rust/tests/ui/methods/method-ambig-two-traits-fro...

17 lines
175 B
Rust

trait A { fn foo(); }
trait B { fn foo(); }
struct AB {}
impl A for AB {
fn foo() {}
}
impl B for AB {
fn foo() {}
}
fn main() {
AB::foo(); //~ ERROR E0034
}