summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_allocation2.rs
blob: 0fcfaad842c9fa35c3d1ade6d0de49abc2c62fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// skip-filecheck
// unit-test: ConstProp
// ignore-endian-big
// EMIT_MIR_FOR_EACH_BIT_WIDTH
// EMIT_MIR const_allocation2.main.ConstProp.after.mir
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]])];