]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/inline_local/hidden-use.rs
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / rustdoc / inline_local / hidden-use.rs
1 mod private {
2     pub struct Foo {}
3 }
4
5 // @has hidden_use/index.html
6 // @!hasraw - 'private'
7 // @!hasraw - 'Foo'
8 // @!has hidden_use/struct.Foo.html
9 #[doc(hidden)]
10 pub use private::Foo;