]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-14393.rs
Rollup merge of #106752 - sulami:master, r=estebank
[rust.git] / tests / ui / issues / issue-14393.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 fn main() {
5     match ("", 1_usize) {
6         (_, 42_usize) => (),
7         ("", _) => (),
8         _ => ()
9     }
10 }