mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
17 lines
193 B
Rust
17 lines
193 B
Rust
trait A { fn foo(self); }
|
|
trait B { fn foo(self); }
|
|
|
|
struct AB {}
|
|
|
|
impl A for AB {
|
|
fn foo(self) {}
|
|
}
|
|
|
|
impl B for AB {
|
|
fn foo(self) {}
|
|
}
|
|
|
|
fn main() {
|
|
AB {}.foo(); //~ ERROR E0034
|
|
}
|