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, 0 insertions, 15 deletions
diff --git a/src/test/ui/error-codes/E0030.stderr b/src/test/ui/error-codes/E0030.stderr
deleted file mode 100644
index 8a6114024..000000000
--- a/src/test/ui/error-codes/E0030.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-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`.