rust/tests/mir-opt/const_allocation2.rs

14 lines
324 B
Rust
Raw Normal View History

// skip-filecheck
//@ test-mir-pass: GVN
//@ ignore-endian-big
2020-03-11 05:49:00 -05:00
// EMIT_MIR_FOR_EACH_BIT_WIDTH
2023-09-20 16:43:33 -05:00
// EMIT_MIR const_allocation2.main.GVN.after.mir
2020-03-11 05:49:00 -05:00
fn main() {
FOO;
}
const BAR: [u8; 4] = [42, 69, 21, 111];
static FOO: &[(Option<i32>, &[&u8])] =
&[(None, &[]), (None, &[&5, &6]), (Some(42), &[&BAR[3], &42, &BAR[2]])];