summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0029-teach.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0029-teach.rs')
-rw-r--r--src/test/ui/error-codes/E0029-teach.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/ui/error-codes/E0029-teach.rs b/src/test/ui/error-codes/E0029-teach.rs
new file mode 100644
index 000000000..3ff8cb348
--- /dev/null
+++ b/src/test/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
+ _ => {}
+ }
+}