diff options
Diffstat (limited to 'tests/rustdoc/strip-enum-variant.rs')
-rw-r--r-- | tests/rustdoc/strip-enum-variant.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/rustdoc/strip-enum-variant.rs b/tests/rustdoc/strip-enum-variant.rs new file mode 100644 index 000000000..8753a7dc6 --- /dev/null +++ b/tests/rustdoc/strip-enum-variant.rs @@ -0,0 +1,11 @@ +// @has strip_enum_variant/enum.MyThing.html +// @has - '//code' 'Shown' +// @!has - '//code' 'NotShown' +// @has - '//code' '// some variants omitted' +// Also check that `NotShown` isn't displayed in the sidebar. +// @snapshot no-not-shown - '//*[@class="sidebar-elems"]/section/*[@class="block"][1]' +pub enum MyThing { + Shown, + #[doc(hidden)] + NotShown, +} |