]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/recursion2.rs
Auto merge of #82417 - the8472:fix-copy_file_range-append, r=m-ou-se
[rust.git] / src / test / rustdoc / recursion2.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 }