]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/const_prop/tuple_literal_propagation.rs
Merge commit 'd556c56f792756dd7cfec742b9f2e07612dc10f4' into sync_cg_clif-2021-02-01
[rust.git] / src / test / mir-opt / const_prop / tuple_literal_propagation.rs
1 // EMIT_MIR tuple_literal_propagation.main.ConstProp.diff
2 fn main() {
3     let x = (1, 2);
4
5     consume(x);
6 }
7
8 #[inline(never)]
9 fn consume(_: (u32, u32)) { }