rust/src/test/ui/span/issue-27522.stderr
2019-04-18 13:29:28 -04:00

12 lines
357 B
Plaintext

error[E0307]: invalid method receiver type: &SomeType
--> $DIR/issue-27522.rs:6:22
|
LL | fn handler(self: &SomeType);
| ^^^^^^^^^
|
= note: type must be `Self` or a type that dereferences to it
= help: consider changing to `self`, `&self`, `&mut self`, or `self: Box<Self>`
error: aborting due to previous error