rust/tests/ui/error-codes/E0407.rs
2023-01-11 09:32:08 +00:00

15 lines
125 B
Rust

trait Foo {
fn a();
}
struct Bar;
impl Foo for Bar {
fn a() {}
fn b() {}
//~^ ERROR E0407
}
fn main() {
}