rust/src/test/ui/use-self-in-inner-fn.stderr
2018-12-25 21:08:33 -07:00

16 lines
519 B
Plaintext

error[E0401]: can't use type parameters from outer function
--> $DIR/use-self-in-inner-fn.rs:6:25
|
LL | impl A {
| ---- `Self` type implicitly declared here, by this `impl`
...
LL | fn peach(this: &Self) {
| ^^^^
| |
| use of type variable from outer function
| use a type here instead
error: aborting due to previous error
For more information about this error, try `rustc --explain E0401`.