about summary refs log tree commit diff
path: root/tests/rustdoc/doc-hidden-private-67851-both.rs
blob: e6eb6a68ffdb90fee4c56b0fe79450f8b431eeae (plain)
1
2
3
4
5
6
7
8
9
10
//@ compile-flags: -Zunstable-options --document-private-items --document-hidden-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;