mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
11 lines
276 B
Rust
11 lines
276 B
Rust
// 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;
|
|
}
|