Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
union
/
union-nonrepresentable.rs
blob: 4bdf7c6872fa5183f3eb4da6666db8fe778c642e [
file
]
union U
{
//~ ERROR recursive type `U` has infinite size
a
:
u8
,
b
:
std
::
mem
::
ManuallyDrop
<
U
>,
}
fn
main
()
{}