mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
11 lines
231 B
Rust
11 lines
231 B
Rust
//@ compile-flags: --document-private-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;
|