rust/src/test/ui/span/issue-27522.stderr

13 lines
448 B
Plaintext
Raw Normal View History

2017-11-08 15:12:34 -06:00
error[E0307]: invalid `self` type: &SomeType
--> $DIR/issue-27522.rs:16:22
|
2018-02-22 18:42:32 -06:00
LL | fn handler(self: &SomeType); //~ ERROR invalid `self` type
2017-11-08 15:12:34 -06:00
| ^^^^^^^^^
|
2017-11-08 15:12:34 -06:00
= 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
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0307`.