]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-18060.rs
Auto merge of #87296 - Aaron1011:inert-warn, r=petrochenkov
[rust.git] / src / test / ui / issues / issue-18060.rs
1 // run-pass
2 // Regression test for #18060: match arms were matching in the wrong order.
3
4 fn main() {
5     assert_eq!(2, match (1, 3) { (0, 2..=5) => 1, (1, 3) => 2, (_, 2..=5) => 3, (_, _) => 4 });
6     assert_eq!(2, match (1, 3) {                  (1, 3) => 2, (_, 2..=5) => 3, (_, _) => 4 });
7     assert_eq!(2, match (1, 7) { (0, 2..=5) => 1, (1, 7) => 2, (_, 2..=5) => 3, (_, _) => 4 });
8 }