2024-02-22 06:10:29 -06:00
|
|
|
//@ compile-flags: -Zunstable-options --document-hidden-items
|
2024-04-06 16:41:09 -05:00
|
|
|
// https://github.com/rust-lang/rust/issues/67851
|
|
|
|
#![crate_name="foo"]
|
2020-01-04 12:58:32 -06:00
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/struct.Hidden.html
|
2020-01-04 12:58:32 -06:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub struct Hidden;
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ !has foo/struct.Private.html
|
2020-01-04 12:58:32 -06:00
|
|
|
struct Private;
|