2019-02-07 07:59:59 -06:00
|
|
|
error[E0401]: can't use generic parameters from outer function
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/use-self-in-inner-fn.rs:6:25
|
2018-09-04 12:41:33 -05:00
|
|
|
|
|
|
|
|
LL | impl A {
|
2018-09-05 11:56:01 -05:00
|
|
|
| ---- `Self` type implicitly declared here, by this `impl`
|
2018-09-04 12:41:33 -05:00
|
|
|
...
|
|
|
|
LL | fn peach(this: &Self) {
|
|
|
|
| ^^^^
|
|
|
|
| |
|
2019-02-07 07:59:59 -06:00
|
|
|
| use of generic parameter from outer function
|
2018-09-05 10:39:50 -05:00
|
|
|
| use a type here instead
|
2018-09-04 12:41:33 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0401`.
|