rust/tests/mir-opt/const_allocation.rs

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

12 lines
282 B
Rust
Raw Normal View History

// skip-filecheck
2023-09-20 21:43:33 +00:00
// unit-test: GVN
// ignore-endian-big
2020-03-11 10:49:00 +00:00
// EMIT_MIR_FOR_EACH_BIT_WIDTH
static FOO: &[(Option<i32>, &[&str])] =
&[(None, &[]), (None, &["foo", "bar"]), (Some(42), &["meh", "mop", "möp"])];
2023-09-20 21:43:33 +00:00
// EMIT_MIR const_allocation.main.GVN.after.mir
2020-03-11 10:49:00 +00:00
fn main() {
FOO;
}