summary refs log tree commit diff
path: root/src/test/ui/use-self-in-inner-fn.stderr
blob: cef030aec460c6bc3369dc935c719f6c4aa741b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0401]: can't use type parameters from outer function
  --> $DIR/use-self-in-inner-fn.rs:16: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`.