rust/src/test/ui/error-codes/E0407.rs
2018-12-25 21:08:33 -07:00

14 lines
125 B
Rust

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