blob: 1f70ceefe44d6350f25818d2cb94b531ac934213 (
plain)
1
2
3
4
5
6
7
8
9
|
// 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;
|