mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +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() {
|
|
}
|