]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-fail/divide-by-zero.rs
Add #[rustc_no_mir] to make tests pass with -Z orbit.
[rust.git] / src / test / run-fail / divide-by-zero.rs
index 7a17dd024153c0cb963cf90ccdfd9f607424a189..d3817b25d6100f6d364ec3515c20102ad0e7b665 100644 (file)
@@ -8,8 +8,13 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// error-pattern:quotient zero
+// ignore-pretty : (#23623) problems when  ending with // comments
+
+// error-pattern:attempted to divide by zero
+
+#![feature(rustc_attrs)]
+#[rustc_no_mir] // FIXME #29769 MIR overflow checking is TBD.
 fn main() {
     let y = 0;
-    let z = 1 / y;
+    let _z = 1 / y;
 }