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