diff options
| author | Jubilee Young <workingjubilee@gmail.com> | 2024-09-20 00:39:10 -0700 |
|---|---|---|
| committer | Jubilee Young <workingjubilee@gmail.com> | 2024-09-20 10:02:14 -0700 |
| commit | 325af25c9441ecffd0fc2fb7d5f324fe6224fe7c (patch) | |
| tree | f9ce7346234846bea84d75827b27c3e9d41014c5 /tests/ui/limits/huge-array-simple-64.rs | |
| parent | 28628f37435e8899d5d0730fc1fb5aa7345a5e31 (diff) | |
| download | rust-325af25c9441ecffd0fc2fb7d5f324fe6224fe7c.tar.gz rust-325af25c9441ecffd0fc2fb7d5f324fe6224fe7c.zip | |
TL note: current means target
Diffstat (limited to 'tests/ui/limits/huge-array-simple-64.rs')
| -rw-r--r-- | tests/ui/limits/huge-array-simple-64.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/limits/huge-array-simple-64.rs b/tests/ui/limits/huge-array-simple-64.rs index 13b284503bf..d2838e0d41e 100644 --- a/tests/ui/limits/huge-array-simple-64.rs +++ b/tests/ui/limits/huge-array-simple-64.rs @@ -4,6 +4,6 @@ #![allow(arithmetic_overflow)] fn main() { - let _fat: [u8; (1<<61)+(1<<31)] = //~ ERROR too big for the current architecture + let _fat: [u8; (1<<61)+(1<<31)] = //~ ERROR too big for the target architecture [0; (1u64<<61) as usize +(1u64<<31) as usize]; } |
