summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/issue-108925.rs
blob: 9c36d0d71c4bccdca8f7aed5f7a46f109f3c777d (plain)
1
2
3
4
5
6
7
8
9
10
// @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,
}