rust/tests/mir-opt/const_allocation2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
312 B
Rust
Raw Normal View History

2022-12-05 03:38:46 +08:00
// unit-test: ConstProp
// ignore-endian-big
2020-03-11 18:49:00 +08:00
// EMIT_MIR_FOR_EACH_BIT_WIDTH
2020-07-28 03:22:43 +08:00
// EMIT_MIR const_allocation2.main.ConstProp.after.mir
2020-03-11 18:49:00 +08: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]])];