]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/use-suggestions-rust-2018/ep-nested-lib.rs
Auto merge of #107843 - bjorn3:sync_cg_clif-2023-02-09, r=bjorn3
[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 }