blob: 12f9bba18d8171f89a8dff7aead036da49104742 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// run-pass
#![allow(unused_imports)]
// This should resolve fine even with the circular imports as
// they are not `pub`.
pub mod a {
use b::*;
}
pub mod b {
use a::*;
}
use a::*;
fn main() {
}
|