summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/const_prop/aggregate.rs
blob: 7a3b26a731727305e00a50ff49e12776bfb597f4 (plain)
1
2
3
4
5
6
// compile-flags: -O

// EMIT_MIR aggregate.main.ConstProp.diff
fn main() {
    let x = (0, 1, 2).1 + 0;
}