mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
13 lines
419 B
Plaintext
13 lines
419 B
Plaintext
error[E0401]: can't use generic parameters from outer function
|
|
--> $DIR/issue-12796.rs:3:22
|
|
|
|
|
LL | fn inner(_: &Self) {
|
|
| ^^^^
|
|
| |
|
|
| use of generic parameter from outer function
|
|
| can't use `Self` here
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0401`.
|