]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/inline_local/hidden-use.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[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;