rust/tests/mir-opt/const_prop/aggregate.rs
2023-01-11 09:32:08 +00:00

9 lines
179 B
Rust

// unit-test: ConstProp
// compile-flags: -O
// EMIT_MIR aggregate.main.ConstProp.diff
// EMIT_MIR aggregate.main.PreCodegen.after.mir
fn main() {
let x = (0, 1, 2).1 + 0;
}