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