mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
14 lines
125 B
Rust
14 lines
125 B
Rust
trait Foo {
|
|
fn a();
|
|
}
|
|
|
|
struct Bar;
|
|
|
|
impl Foo for Bar {
|
|
fn a() {}
|
|
fn b() {}
|
|
//~^ ERROR E0407
|
|
}
|
|
|
|
fn main() {
|
|
}
|