]> git.lizzy.rs Git - rust.git/blob - tests/mir-opt/const_prop/tuple_literal_propagation.rs
Rollup merge of #105172 - alexs-sh:issue-98861-fix-next, r=scottmcm
[rust.git] / tests / 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)) { }