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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
138 B
Rust
Raw Normal View History

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