]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/const-param-from-outer-fn.full.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / const-generics / const-param-from-outer-fn.full.stderr
CommitLineData
3dfed10e 1error[E0401]: can't use generic parameters from outer function
5869c6ff 2 --> $DIR/const-param-from-outer-fn.rs:8:9
3dfed10e
XL
3 |
4LL | fn foo<const X: u32>() {
5 | - const parameter from outer function
6LL | fn bar() -> u32 {
7 | --- try adding a local generic parameter in this method instead
8LL | X
9 | ^ use of generic parameter from outer function
10
11error: aborting due to previous error
12
13For more information about this error, try `rustc --explain E0401`.