mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12 lines
282 B
Rust
12 lines
282 B
Rust
// skip-filecheck
|
|
// unit-test: 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;
|
|
}
|