mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
23 lines
528 B
Rust
23 lines
528 B
Rust
|
// Regression test for issue 123710.
|
||
|
// Tests that the we do not ICE in KnownPanicsLint
|
||
|
// when a union contains an enum with an repr(packed),
|
||
|
// which is a repr not supported for enums
|
||
|
|
||
|
#[repr(packed)]
|
||
|
//~^ ERROR attribute should be applied to a struct or union
|
||
|
#[repr(u32)]
|
||
|
enum E {
|
||
|
A,
|
||
|
B,
|
||
|
C,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
union InvalidTag {
|
||
|
int: u32,
|
||
|
e: E,
|
||
|
//~^ ERROR field must implement `Copy` or be wrapped in `ManuallyDrop<...>` to be used in a union
|
||
|
}
|
||
|
let _invalid_tag = InvalidTag { int: 4 };
|
||
|
}
|