Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
union
/
union-unsized.rs
blob: 8e897d7d3c6d66b2a9c0be661ca2ec2ea64fb6ee [
file
] [
log
] [
blame
]
// revisions: mirunsafeck thirunsafeck
// [thirunsafeck]compile-flags: -Z thir-unsafeck
union U
{
a
:
str
,
//~^ ERROR the size for values of type
b
:
u8
,
}
union W
{
a
:
u8
,
b
:
str
,
//~^ ERROR the size for values of type
}
fn
main
()
{}