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