]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/recursion1.rs
Auto merge of #107778 - weihanglo:update-cargo, r=weihanglo
[rust.git] / tests / rustdoc / recursion1.rs
1 #![crate_type = "lib"]
2
3 mod m {
4     pub use self::a::Foo;
5
6     mod a {
7         pub struct Foo;
8     }
9
10     mod b {
11         pub use super::*;
12     }
13 }