]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/const-err-multi.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / test / compile-fail / const-err-multi.rs
index 7de93a213b02212485784db0b469203180e7bef1..d4f9c0fe56dae4645af8f37e178cfad831ca2a87 100644 (file)
@@ -10,7 +10,7 @@
 
 #![deny(const_err)]
 
-pub const A: i8 = -std::i8::MIN; //~ ERROR attempted to negate with overflow
+pub const A: i8 = -std::i8::MIN; //~ ERROR attempt to negate with overflow
 pub const B: i8 = A;
 pub const C: u8 = A as u8;
 pub const D: i8 = 50 - A;