blob: 02672d5454e57bf82cdb1c2c5d13852d1e2c90f2 [file] [log] [blame]
#![crate_type = "rlib"]
pub enum NonExhaustiveVariants {
#[non_exhaustive] Unit,
#[non_exhaustive] Tuple(u32),
#[non_exhaustive] Struct { field: u32 }
}