]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/auxiliary/mod-stackoverflow.rs
Rollup merge of #84464 - jyn514:type-kind, r=CraftSpider
[rust.git] / src / test / rustdoc / auxiliary / mod-stackoverflow.rs
1 // compile-flags: -Cmetadata=aux
2
3 pub mod tree {
4     pub use tree;
5 }
6
7 pub mod tree2 {
8     pub mod prelude {
9         pub use tree2;
10     }
11 }