mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
318 B
Rust
14 lines
318 B
Rust
// skip-filecheck
|
|
// unit-test: GVN
|
|
// ignore-endian-big
|
|
// EMIT_MIR_FOR_EACH_BIT_WIDTH
|
|
// EMIT_MIR const_allocation2.main.GVN.after.mir
|
|
fn main() {
|
|
FOO;
|
|
}
|
|
|
|
const BAR: [u8; 4] = [42, 69, 21, 111];
|
|
|
|
static FOO: &[(Option<i32>, &[&u8])] =
|
|
&[(None, &[]), (None, &[&5, &6]), (Some(42), &[&BAR[3], &42, &BAR[2]])];
|