summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0029.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0029.rs')
-rw-r--r--src/test/ui/error-codes/E0029.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/ui/error-codes/E0029.rs b/src/test/ui/error-codes/E0029.rs
deleted file mode 100644
index d9b53e113..000000000
--- a/src/test/ui/error-codes/E0029.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-fn main() {
- let s = "hoho";
-
- match s {
- "hello" ..= "world" => {}
- //~^ ERROR only `char` and numeric types are allowed in range patterns
- _ => {}
- }
-}