]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/const_prop/aggregate.rs
Merge commit '0c89065b934397b62838fe3e4ef6f6352fc52daf' into libgccjit-codegen
[rust.git] / src / test / mir-opt / const_prop / aggregate.rs
1 // compile-flags: -O
2
3 // EMIT_MIR aggregate.main.ConstProp.diff
4 fn main() {
5     let x = (0, 1, 2).1 + 0;
6 }