rust/tests/mir-opt/const_allocation.rs

12 lines
294 B
Rust
Raw Normal View History

// skip-filecheck
2022-12-04 13:38:46 -06:00
// unit-test: ConstProp
// ignore-endian-big
2020-03-11 05:49:00 -05:00
// EMIT_MIR_FOR_EACH_BIT_WIDTH
static FOO: &[(Option<i32>, &[&str])] =
&[(None, &[]), (None, &["foo", "bar"]), (Some(42), &["meh", "mop", "möp"])];
2020-07-27 14:22:43 -05:00
// EMIT_MIR const_allocation.main.ConstProp.after.mir
2020-03-11 05:49:00 -05:00
fn main() {
FOO;
}