]> git.lizzy.rs Git - rust.git/blob - tests/mir-opt/const_prop/aggregate.rs
Merge commit '598f0909568a51de8a2d1148f55a644fd8dffad0' into sync_cg_clif-2023-01-24
[rust.git] / tests / mir-opt / const_prop / aggregate.rs
1 // unit-test: ConstProp
2 // compile-flags: -O
3
4 // EMIT_MIR aggregate.main.ConstProp.diff
5 // EMIT_MIR aggregate.main.PreCodegen.after.mir
6 fn main() {
7     let x = (0, 1, 2).1 + 0;
8 }