]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/const_prop/tuple_literal_propagation.rs
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[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)) { }