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