blob: 7fed0426ee8740d5bab0417a55c3e7cf1b4f5f07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0186]: method `foo` has a `&self` declaration in the trait, but not in the impl
--> $DIR/E0186.rs:8:5
|
LL | fn foo(&self); //~ `&self` used in trait
| -------------- `&self` used in trait
...
LL | fn foo() {} //~ ERROR E0186
| ^^^^^^^^ expected `&self` in impl
error: aborting due to previous error
For more information about this error, try `rustc --explain E0186`.
|