Sign in
android
/
toolchain
/
rustc
/
5bd94c128c5702589f742e958fb8ae82646357c9
/
.
/
src
/
test
/
ui
/
lint
/
issue-69485-var-size-diffs-too-large.rs
blob: 0895f4c18e3879b3a674f70b38b72ea5a3e929fe [
file
] [
log
] [
blame
]
// build-fail
// only-x86_64
// compile-flags: -Zmir-opt-level=0
fn
main
()
{
Bug
::
V
([
0
;
!
0
]);
//~ ERROR is too big for the current
}
enum
Bug
{
V
([
u8
;
!
0
]),
}