summaryrefslogtreecommitdiffstats
path: root/src/test/ui/match/match-range-fail-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/match/match-range-fail-2.rs')
-rw-r--r--src/test/ui/match/match-range-fail-2.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/match/match-range-fail-2.rs b/src/test/ui/match/match-range-fail-2.rs
deleted file mode 100644
index 792664e1d..000000000
--- a/src/test/ui/match/match-range-fail-2.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-#![feature(exclusive_range_pattern)]
-
-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
-
- match 5 {
- 0 .. 0 => { }
- _ => { }
- };
- //~^^^ 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
-}