]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/issue-27522.stderr
Rollup merge of #56914 - glaubitz:ignore-tests, r=alexcrichton
[rust.git] / src / test / ui / span / issue-27522.stderr
1 error[E0307]: invalid method receiver type: &SomeType
2   --> $DIR/issue-27522.rs:16:22
3    |
4 LL |     fn handler(self: &SomeType); //~ ERROR invalid method receiver type
5    |                      ^^^^^^^^^
6    |
7    = note: type must be `Self` or a type that dereferences to it
8    = help: consider changing to `self`, `&self`, `&mut self`, or `self: Box<Self>`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0307`.