2024-06-21 12:03:08 +00:00
|
|
|
//@ has issue_108925/enum.MyThing.html
|
|
|
|
//@ has - '//code' 'Shown'
|
|
|
|
//@ !has - '//code' 'NotShown'
|
|
|
|
//@ !has - '//code' '// some variants omitted'
|
2023-03-11 08:22:42 +00:00
|
|
|
#[non_exhaustive]
|
|
|
|
pub enum MyThing {
|
|
|
|
Shown,
|
|
|
|
#[doc(hidden)]
|
|
|
|
NotShown,
|
|
|
|
}
|