rust/tests/ui/const-generics/early/const-param-from-outer-fn.rs
2023-01-11 09:32:08 +00:00

8 lines
138 B
Rust

fn foo<const X: u32>() {
fn bar() -> u32 {
X //~ ERROR can't use generic parameters from outer function
}
}
fn main() {}