mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
11 lines
249 B
Rust
11 lines
249 B
Rust
//@ compile-flags: -Zunstable-options --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;
|