about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2020-02-19 20:12:01 +0100
committerRalf Jung <post@ralfj.de>2020-02-19 20:12:01 +0100
commit88d14bfbc986802601d2414ea5d6322e0056917b (patch)
tree8b0ba34385060a8982ec5d2667f27af103e54e65
parent58bb47ebe5db54f54f5a45134110f73ff216bb36 (diff)
downloadrust-88d14bfbc986802601d2414ea5d6322e0056917b.tar.gz
rust-88d14bfbc986802601d2414ea5d6322e0056917b.zip
fix 32bit-only test
-rw-r--r--src/test/ui/huge-array-simple-32.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/huge-array-simple-32.rs b/src/test/ui/huge-array-simple-32.rs
index 3e574dfa07b..2290e3d5e76 100644
--- a/src/test/ui/huge-array-simple-32.rs
+++ b/src/test/ui/huge-array-simple-32.rs
@@ -4,7 +4,7 @@
 // FIXME https://github.com/rust-lang/rust/issues/59774
 // normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
 // normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
-#![allow(exceeding_bitshifts)]
+#![allow(arithmetic_overflow)]
 
 fn main() {
     let _fat: [u8; (1<<31)+(1<<15)] = //~ ERROR too big for the current architecture