summaryrefslogtreecommitdiffstats
path: root/src/test/ui/match/match-range-fail.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/match/match-range-fail.rs')
-rw-r--r--src/test/ui/match/match-range-fail.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/match/match-range-fail.rs b/src/test/ui/match/match-range-fail.rs
deleted file mode 100644
index e53c8463e..000000000
--- a/src/test/ui/match/match-range-fail.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-fn main() {
- match "wow" {
- "bar" ..= "foo" => { }
- };
- //~^^ ERROR only `char` and numeric types are allowed in range
-
- match "wow" {
- 10 ..= "what" => ()
- };
- //~^^ ERROR only `char` and numeric types are allowed in range
-
- match "wow" {
- true ..= "what" => {}
- };
- //~^^ ERROR only `char` and numeric types are allowed in range
-
- match 5 {
- 'c' ..= 100 => { }
- _ => { }
- };
- //~^^^ ERROR mismatched types
-}