Sign in
rust
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
consts
/
promoted_size_overflow.rs
blob: 232fb76c75b0c18b096ed5d24523d4d1565a61df [
file
] [
log
] [
blame
]
//@ only-64bit
pub
struct
Data
([
u8
;
usize
::
MAX
>>
2
]);
const
_
:
&
'
static
[
Data
]
=
&[];
//~^ ERROR: too big for the target architecture
fn
main
()
{}