summary refs log tree commit diff
path: root/src/test/ui/span/issue-27522.stderr
blob: 1fcb839d170595529bd55ce6ceca51b16651cd05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0307]: invalid method receiver type: &SomeType
  --> $DIR/issue-27522.rs:6:22
   |
LL |     fn handler(self: &SomeType); //~ ERROR invalid method receiver type
   |                      ^^^^^^^^^
   |
   = 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

For more information about this error, try `rustc --explain E0307`.