]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/glob-cycles.rs
Auto merge of #106646 - Amanieu:ilp32-object, r=Mark-Simulacrum
[rust.git] / tests / ui / imports / glob-cycles.rs
1 // check-pass
2
3 mod foo {
4     pub use bar::*;
5     pub use main as f;
6 }
7
8 mod bar {
9     pub use foo::*;
10 }
11
12 pub use foo::*;
13 pub use baz::*;
14 mod baz {
15     pub use super::*;
16 }
17
18 pub fn main() {}