about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0029-teach.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/error-codes/E0029-teach.rs')
-rw-r--r--tests/ui/error-codes/E0029-teach.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/error-codes/E0029-teach.rs b/tests/ui/error-codes/E0029-teach.rs
new file mode 100644
index 00000000000..3ff8cb348e7
--- /dev/null
+++ b/tests/ui/error-codes/E0029-teach.rs
@@ -0,0 +1,11 @@
+// compile-flags: -Z teach
+
+fn main() {
+    let s = "hoho";
+
+    match s {
+        "hello" ..= "world" => {}
+        //~^ ERROR only `char` and numeric types are allowed in range patterns
+        _ => {}
+    }
+}