]> git.proxmox.com Git - rustc.git/blobdiff - src/test/run-fail/overflowing-rsh-5.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.git] / src / test / run-fail / overflowing-rsh-5.rs
index 34a7ff833bbbdebb25f7e87d212d3c595da79858..249b952a5dca2643fec1d751066561c8327a3e64 100644 (file)
@@ -8,11 +8,15 @@
 // 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 'shift operation overflowed'
 // compile-flags: -C debug-assertions
 
 #![warn(exceeding_bitshifts)]
 
+#![feature(rustc_attrs)]
+#[rustc_no_mir] // FIXME #29769 MIR overflow checking is TBD.
 fn main() {
     let _n = 1i64 >> [64][0];
 }