rust/tests/ui/error-codes/E0185.rs

16 lines
207 B
Rust

trait Foo {
fn foo();
//~^ NOTE trait method declared without `&self`
}
struct Bar;
impl Foo for Bar {
fn foo(&self) {}
//~^ ERROR E0185
//~| NOTE `&self` used in impl
}
fn main() {
}