Allow more lints, mainly overflowing_literals for cases that only arose on 32-bit.

This commit is contained in:
Felix S. Klock II 2018-09-04 14:33:34 +02:00
parent dc124e4d0b
commit 5fe0851548
8 changed files with 11 additions and 0 deletions

View file

@ -9,6 +9,7 @@
// except according to those terms.
// run-pass
#![allow(overflowing_literals)]
// Test that we cleanup a fixed size Box<[D; k]> properly when D has a
// destructor.

View file

@ -9,6 +9,7 @@
// except according to those terms.
// run-pass
#![allow(overflowing_literals)]
// Test that we cleanup dynamic sized Box<[D]> properly when D has a
// destructor.

View file

@ -9,6 +9,7 @@
// except according to those terms.
// run-pass
#![allow(overflowing_literals)]
// ignore-emscripten no threads support