Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
limits
/
issue-69485-var-size-diffs-too-large.rs
blob: 6133183a55cf1b71cd689342c36f04d78febeba6 [
file
] [
log
] [
blame
] [
edit
]
//@ build-fail
//@ only-x86_64
//@ compile-flags: -Zmir-opt-level=0
fn
main
()
{
Bug
::
V
([
0
;
!
0
]);
//~ ERROR are too big for the target
}
enum
Bug
{
V
([
u8
;
!
0
]),
}