summaryrefslogtreecommitdiffstats
path: root/tests/ui/match/match-range-fail-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/match/match-range-fail-2.rs')
-rw-r--r--tests/ui/match/match-range-fail-2.rs9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/ui/match/match-range-fail-2.rs b/tests/ui/match/match-range-fail-2.rs
index 792664e1d..4489cf1ab 100644
--- a/tests/ui/match/match-range-fail-2.rs
+++ b/tests/ui/match/match-range-fail-2.rs
@@ -3,22 +3,19 @@
fn main() {
match 5 {
6 ..= 1 => { }
+ //~^ ERROR lower range bound must be less than or equal to upper
_ => { }
};
- //~^^^ ERROR lower range bound must be less than or equal to upper
- //~| ERROR lower range bound must be less than or equal to upper
match 5 {
0 .. 0 => { }
+ //~^ ERROR lower range bound must be less than upper
_ => { }
};
- //~^^^ ERROR lower range bound must be less than upper
- //~| ERROR lower range bound must be less than upper
match 5u64 {
0xFFFF_FFFF_FFFF_FFFF ..= 1 => { }
+ //~^ ERROR lower range bound must be less than or equal to upper
_ => { }
};
- //~^^^ ERROR lower range bound must be less than or equal to upper
- //~| ERROR lower range bound must be less than or equal to upper
}