2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2017-11-03 19:15:15 +00: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 17:30:19 -04:00
|
|
|
let _variant_struct = NonExhaustiveVariants::Struct { field: 340 };
|
2017-11-03 19:15:15 +00:00
|
|
|
|
|
|
|
match variant_tuple {
|
|
|
|
NonExhaustiveVariants::Unit => "",
|
2019-09-01 17:30:19 -04:00
|
|
|
NonExhaustiveVariants::Tuple(_fe_tpl) => "",
|
|
|
|
NonExhaustiveVariants::Struct { field: _ } => ""
|
2017-11-03 19:15:15 +00:00
|
|
|
};
|
|
|
|
}
|