mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
15 lines
125 B
Rust
15 lines
125 B
Rust
trait Foo {
|
|
fn a();
|
|
}
|
|
|
|
struct Bar;
|
|
|
|
impl Foo for Bar {
|
|
fn a() {}
|
|
fn b() {}
|
|
//~^ ERROR E0407
|
|
}
|
|
|
|
fn main() {
|
|
}
|