2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2017-11-03 14:15:15 -05:00
|
|
|
|
|
|
|
pub enum NonExhaustiveVariants {
|
|
|
|
#[non_exhaustive] Unit,
|
|
|
|
#[non_exhaustive] Tuple(u32),
|
|
|
|
#[non_exhaustive] Struct { field: u32 }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let variant_tuple = NonExhaustiveVariants::Tuple(340);
|
2019-09-01 16:30:19 -05:00
|
|
|
let _variant_struct = NonExhaustiveVariants::Struct { field: 340 };
|
2017-11-03 14:15:15 -05:00
|
|
|
|
|
|
|
match variant_tuple {
|
|
|
|
NonExhaustiveVariants::Unit => "",
|
2019-09-01 16:30:19 -05:00
|
|
|
NonExhaustiveVariants::Tuple(_fe_tpl) => "",
|
|
|
|
NonExhaustiveVariants::Struct { field: _ } => ""
|
2017-11-03 14:15:15 -05:00
|
|
|
};
|
|
|
|
}
|