mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-23 12:18:02 +00:00
17 lines
175 B
Rust
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
|
|
}
|