Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
12
tests/ui/limits/huge-array-simple-64.rs
Normal file
12
tests/ui/limits/huge-array-simple-64.rs
Normal file
|
@ -0,0 +1,12 @@
|
|||
// build-fail
|
||||
// ignore-32bit
|
||||
|
||||
// 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(arithmetic_overflow)]
|
||||
|
||||
fn main() {
|
||||
let _fat: [u8; (1<<61)+(1<<31)] = //~ ERROR too big for the current architecture
|
||||
[0; (1u64<<61) as usize +(1u64<<31) as usize];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue