| 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 { |
| | --- generic parameter used in this inner function |
| LL | X |
| | ^ use of generic parameter from outer item |
| | |
| = note: nested items are independent from their parent item for everything except for privacy and name resolution |
| help: try introducing a local generic parameter here |
| | |
| LL | fn bar<X>() -> u32 { |
| | +++ |
| |
| error: aborting due to 1 previous error |
| |
| For more information about this error, try `rustc --explain E0401`. |