]> git.proxmox.com Git - rustc.git/blobdiff - src/test/run-fail/overflowing-add.rs
New upstream version 1.14.0+dfsg1
[rustc.git] / src / test / run-fail / overflowing-add.rs
index acc7676db457efd8d71c8264b37acd7b989562cd..250f0726dc9d61d0e83f547e0e40e58e2b94a0f4 100644 (file)
@@ -8,12 +8,9 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-pretty : (#23623) problems when  ending with // comments
-
 // error-pattern:thread 'main' panicked at 'attempt to add with overflow'
 // compile-flags: -C debug-assertions
 
-
 fn main() {
     let _x = 200u8 + 200u8 + 200u8;
 }