summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_allocation.rs
blob: 91a2455eb836a94e1f4406b376f84a63d92a0509 (plain)
1
2
3
4
5
6
7
8
9
10
// unit-test: ConstProp
// ignore-endian-big
// EMIT_MIR_FOR_EACH_BIT_WIDTH
static FOO: &[(Option<i32>, &[&str])] =
    &[(None, &[]), (None, &["foo", "bar"]), (Some(42), &["meh", "mop", "möp"])];

// EMIT_MIR const_allocation.main.ConstProp.after.mir
fn main() {
    FOO;
}