summary refs log tree commit diff
path: root/src/test/ui/usize-generic-argument-parent.rs
blob: 46b06e2b3662a593eb151ae66b6c1ad57fa509a2 (plain)
1
2
3
4
5
fn foo() {
    let x: usize<foo>; //~ ERROR const arguments are not allowed for this type
}

fn main() {}