summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0030.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0030.stderr')
-rw-r--r--src/test/ui/error-codes/E0030.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/error-codes/E0030.stderr b/src/test/ui/error-codes/E0030.stderr
new file mode 100644
index 000000000..8a6114024
--- /dev/null
+++ b/src/test/ui/error-codes/E0030.stderr
@@ -0,0 +1,15 @@
+error[E0030]: lower range bound must be less than or equal to upper
+ --> $DIR/E0030.rs:3:9
+ |
+LL | 1000 ..= 5 => {}
+ | ^^^^ lower bound larger than upper bound
+
+error[E0030]: lower range bound must be less than or equal to upper
+ --> $DIR/E0030.rs:3:9
+ |
+LL | 1000 ..= 5 => {}
+ | ^^^^ lower bound larger than upper bound
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0030`.