]> git.proxmox.com Git - rustc.git/blob - src/test/mir-opt/const_prop/aggregate.rs
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / mir-opt / const_prop / aggregate.rs
1 // compile-flags: -O
2
3 // EMIT_MIR rustc.main.ConstProp.diff
4 fn main() {
5 let x = (0, 1, 2).1 + 0;
6 }