rust/tests/ui/const-generics/early/const-param-from-outer-fn.rs

8 lines
134 B
Rust
Raw Normal View History

fn foo<const X: u32>() {
fn bar() -> u32 {
2023-09-10 21:06:14 +00:00
X //~ ERROR can't use generic parameters from outer item
}
}
fn main() {}