Sign in
android
/
toolchain
/
rustc
/
7e5f8cb0b1c93bc5741c51ce83c4bd831e386441
/
.
/
tests
/
rustdoc
/
issue-108925.rs
blob: a332771616d4a3b065e309549e752d230550fca1 [
file
] [
log
] [
blame
]
//@ has issue_108925/enum.MyThing.html
//@ has - '//code' 'Shown'
//@ !has - '//code' 'NotShown'
//@ !has - '//code' '// some variants omitted'
#[
non_exhaustive
]
pub
enum
MyThing
{
Shown
,
#[
doc
(
hidden
)]
NotShown
,
}