about summary refs log tree commit diff
path: root/tests/ui/parser/misspelled-keywords/const-generics.rs
blob: 2df64a87e2776a45800f69b64914934bc5955a89 (plain)
1
2
3
4
fn foo<consta N: usize>(_arr: [i32; N]) {}
//~^ ERROR expected one of

fn main() {}