rust/tests/ui/union/union-unsized.rs
2023-01-11 09:32:08 +00:00

18 lines
261 B
Rust

// 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() {}