]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-json/nested.rs
Auto merge of #79780 - camelid:use-summary_opts, r=GuillaumeGomez
[rust.git] / src / test / rustdoc-json / nested.rs
1 // edition:2018
2 pub mod l1 {
3     pub mod l3 {
4         pub struct L4;
5     }
6     pub use l3::L4;
7 }