rust/tests/mir-opt/const_prop/large_array_index.rs
2023-01-11 09:32:08 +00:00

8 lines
195 B
Rust

// EMIT_MIR_FOR_EACH_BIT_WIDTH
// EMIT_MIR large_array_index.main.ConstProp.diff
fn main() {
// check that we don't propagate this, because it's too large
let x: u8 = [0_u8; 5000][2];
}