]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/const_prop/tuple_literal_propagation.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[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)) { }