]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/const-param-from-outer-fn.full.stderr
Auto merge of #79342 - CDirkx:ipaddr-const, r=oli-obk
[rust.git] / src / test / ui / const-generics / const-param-from-outer-fn.full.stderr
1 error[E0401]: can't use generic parameters from outer function
2   --> $DIR/const-param-from-outer-fn.rs:9:9
3    |
4 LL | fn foo<const X: u32>() {
5    |              - const parameter from outer function
6 LL |     fn bar() -> u32 {
7    |        --- try adding a local generic parameter in this method instead
8 LL |         X
9    |         ^ use of generic parameter from outer function
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0401`.