]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/const_prop/aggregate.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[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 }