]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/early/const-param-from-outer-fn.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / const-generics / early / const-param-from-outer-fn.rs
1 fn foo<const X: u32>() {
2 fn bar() -> u32 {
3 X //~ ERROR can't use generic parameters from outer function
4 }
5 }
6
7 fn main() {}