rust/tests/ui/const-generics/early/const-param-from-outer-fn.stderr
León Orell Valerian Liehr b00e408e61
Generalize E0401
2023-09-10 23:06:14 +02:00

14 lines
473 B
Plaintext

error[E0401]: can't use generic parameters from outer item
--> $DIR/const-param-from-outer-fn.rs:3:9
|
LL | fn foo<const X: u32>() {
| - const parameter from outer item
LL | fn bar() -> u32 {
| - help: try introducing a local generic parameter here: `<X>`
LL | X
| ^ use of generic parameter from outer item
error: aborting due to previous error
For more information about this error, try `rustc --explain E0401`.