blob: 8516bafef9bd9e9f45f03e5cb34da55bc92fd71e [file] [log] [blame]
#![crate_type = "rlib"]
#[non_exhaustive]
pub enum NonExhaustiveEnum {
Unit,
Tuple(u32),
Struct { field: u32 }
}
#[non_exhaustive]
pub enum EmptyNonExhaustiveEnum {}