mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 07:54:57 +00:00
17 lines
258 B
Rust
17 lines
258 B
Rust
union U {
|
|
a: str,
|
|
//~^ ERROR the size for values of type
|
|
//~| ERROR field must implement `Copy`
|
|
|
|
b: u8,
|
|
}
|
|
|
|
union W {
|
|
a: u8,
|
|
b: str,
|
|
//~^ ERROR the size for values of type
|
|
//~| ERROR field must implement `Copy`
|
|
}
|
|
|
|
fn main() {}
|