summary refs log tree commit diff
path: root/tests/rustdoc/issue-67851-hidden.rs
blob: 6d532adc06fd83f6e8e99335b7672c60d95d4b14 (plain)
1
2
3
4
5
6
7
8
//@ compile-flags: -Zunstable-options --document-hidden-items

// @has issue_67851_hidden/struct.Hidden.html
#[doc(hidden)]
pub struct Hidden;

// @!has issue_67851_hidden/struct.Private.html
struct Private;