summary refs log tree commit diff
path: root/tests/ui/const-generics/vec-macro-in-static-array.rs
blob: 9f1fc42774fb24dd248b268209f5bf3763130fbc (plain)
1
2
3
4
5
6
// Used to cause ICE

static VEC: [u32; 256] = vec![];
//~^ ERROR mismatched types

fn main() {}