about summary refs log tree commit diff
path: root/tests/mir-opt/const_allocation.rs
blob: e65b2ed9a879cdfd8c647f0d73abb29d88e3938f (plain)
1
2
3
4
5
6
7
8
9
10
11
// skip-filecheck
//@ test-mir-pass: GVN
//@ 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.GVN.after.mir
fn main() {
    FOO;
}