1
Fork 0
rust/tests/ui/resolve/use-self-in-inner-fn.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
513 B
Text
Raw Permalink Normal View History

error[E0401]: can't use `Self` from outer item
2018-12-25 08:56:47 -07:00
--> $DIR/use-self-in-inner-fn.rs:6:25
|
LL | impl A {
2018-09-05 09:56:01 -07:00
| ---- `Self` type implicitly declared here, by this `impl`
...
LL | fn peach(this: &Self) {
| ^^^^
| |
| use of `Self` from outer item
2023-09-10 23:06:14 +02:00
| refer to the type directly here instead
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0401`.