rust/tests/ui/parser/misspelled-keywords/const-generics.rs
2024-09-02 11:45:51 -04:00

5 lines
84 B
Rust

fn foo<consta N: usize>(_arr: [i32; N]) {}
//~^ ERROR expected one of
fn main() {}