Files
rust/tests/ui/const-generics/vec-macro-in-static-array.rs
2025-07-24 17:15:36 +05:00

7 lines
97 B
Rust

// Used to cause ICE
static VEC: [u32; 256] = vec![];
//~^ ERROR mismatched types
fn main() {}