]> git.proxmox.com Git - rustc.git/blob - tests/run-make/use-suggestions-rust-2018/ep-nested-lib.rs
New upstream version 1.70.0+dfsg1
[rustc.git] / tests / run-make / 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 }