about summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0030.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0030.rs')
-rw-r--r--src/test/ui/error-codes/E0030.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/ui/error-codes/E0030.rs b/src/test/ui/error-codes/E0030.rs
index 58d856b7c9d..a5d8f87261b 100644
--- a/src/test/ui/error-codes/E0030.rs
+++ b/src/test/ui/error-codes/E0030.rs
@@ -2,5 +2,6 @@ fn main() {
     match 5u32 {
         1000 ..= 5 => {}
         //~^ ERROR lower range bound must be less than or equal to upper
+        //~| ERROR lower range bound must be less than or equal to upper
     }
 }