about summary refs log tree commit diff
path: root/src/test/compile-fail/const-err2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/const-err2.rs')
-rw-r--r--src/test/compile-fail/const-err2.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/compile-fail/const-err2.rs b/src/test/compile-fail/const-err2.rs
index 7c1fb2ccd47..9889ca1392a 100644
--- a/src/test/compile-fail/const-err2.rs
+++ b/src/test/compile-fail/const-err2.rs
@@ -21,7 +21,6 @@ fn main() {
     //~^ ERROR attempt to negate with overflow
     let b = 200u8 + 200u8 + 200u8;
     //~^ ERROR attempt to add with overflow
-    //~| ERROR attempt to add with overflow
     let c = 200u8 * 4;
     //~^ ERROR attempt to multiply with overflow
     let d = 42u8 - (42u8 + 1);