]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/use-suggestions-rust-2018/ep-nested-lib.rs
Auto merge of #101138 - Rejyr:diagnostic-migration-rustc-lint-pt2, r=davidtwco
[rust.git] / tests / run-make-fulldeps / use-suggestions-rust-2018 / ep-nested-lib.rs
1 #![crate_type = "rlib"]
2
3 pub mod foo {
4     pub mod bar {
5         pub struct Baz;
6     }
7 }