mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-23 04:43:47 +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
|
|
}
|