blob: 12e576100710ac346bd04a0aae45971967da9ca1 (
plain)
1
2
3
4
5
6
7
8
9
|
// @has strip_enum_variant/enum.MyThing.html
// @has - '//code' 'Shown'
// @!has - '//code' 'NotShown'
// @has - '//code' '// some variants omitted'
pub enum MyThing {
Shown,
#[doc(hidden)]
NotShown,
}
|