]> git.lizzy.rs Git - rust.git/blob - tests/ui/mir/mir_small_agg_arg.rs
Rollup merge of #106707 - ehuss:remove-dupe-sha-1, r=Mark-Simulacrum
[rust.git] / tests / ui / mir / mir_small_agg_arg.rs
1 // run-pass
2 #![allow(unused_variables)]
3 fn foo((x, y): (i8, i8)) {
4 }
5
6 fn main() {
7     foo((0, 1));
8 }