blob: f6f546ad5ea7c6d9440a5069ab8b0cd8a6481059 [file] [log] [blame] [edit]
//@ compile-flags: --document-private-items
// https://github.com/rust-lang/rust/issues/67851
#![crate_name="foo"]
//@ !has foo/struct.Hidden.html
#[doc(hidden)]
pub struct Hidden;
//@ has foo/struct.Private.html
struct Private;