blob: 0c369c6ab9717682cfeb6abd35670687ce13f33e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0401]: can't use type parameters from outer function
--> $DIR/issue-12796.rs:13:22
|
LL | fn inner(_: &Self) {
| ^^^^
| |
| use of type variable from outer function
| can't use `Self` here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0401`.
|