We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
With the following code
fn main() { #[derive(Copy, Clone)] enum Void {} union A { a: (), v: Void } let a = A { a: () }; match a.v { } }
it is possible to invoke undefined behaviour in safe code without using unstable features.