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