mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
f4cb6ef8d8
These tests depend on the internal logic of rustc regarding handling very large objects. Fix them to reflect rustc_abi::obj_size_bound diffs.
5 lines
125 B
Rust
5 lines
125 B
Rust
//@ known-bug: rust-lang/rust#125476
|
|
//@ only-x86_64
|
|
pub struct Data([u8; usize::MAX >> 2]);
|
|
const _: &'static [Data] = &[];
|