]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/const-err-multi.rs
New upstream version 1.26.0+dfsg1
[rustc.git] / src / test / compile-fail / const-err-multi.rs
index d4f9c0fe56dae4645af8f37e178cfad831ca2a87..6f0281b8bd0ca7382bf595d54137dae3a5b852a7 100644 (file)
 
 #![deny(const_err)]
 
-pub const A: i8 = -std::i8::MIN; //~ ERROR attempt to negate with overflow
+pub const A: i8 = -std::i8::MIN;
+//~^ ERROR E0080
+//~| ERROR attempt to negate with overflow
+//~| ERROR constant evaluation error
+//~| ERROR this constant cannot be used
 pub const B: i8 = A;
+//~^ ERROR const_err
 pub const C: u8 = A as u8;
+//~^ ERROR const_err
 pub const D: i8 = 50 - A;
+//~^ ERROR const_err
 
 fn main() {
+    let _ = (A, B, C, D);
 }