]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/inline_local/hidden-use.rs
Rollup merge of #69569 - matthiaskrgr:nonminimal_bool, r=mark-Simulacrum
[rust.git] / src / test / rustdoc / inline_local / hidden-use.rs
1 mod private {
2     pub struct Foo {}
3 }
4
5 // @has hidden_use/index.html
6 // @!has - 'private'
7 // @!has - 'Foo'
8 // @!has hidden_use/struct.Foo.html
9 #[doc(hidden)]
10 pub use private::Foo;