]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/recursion2.rs
Sync rust-lang/portable-simd@03f6fbb21e6050da2a05b3ce8f480c020b384916
[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 }