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