8 lines
166 B
Rust
8 lines
166 B
Rust
#![crate_type = "rlib"]
|
|
|
|
pub enum NonExhaustiveVariants {
|
|
#[non_exhaustive] Unit,
|
|
#[non_exhaustive] Tuple(u32),
|
|
#[non_exhaustive] Struct { field: u32 }
|
|
}
|