2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(unused_imports)]
|
2015-08-06 05:48:42 -05:00
|
|
|
// This should resolve fine even with the circular imports as
|
|
|
|
// they are not `pub`.
|
|
|
|
|
2015-08-05 14:56:49 -05:00
|
|
|
pub mod a {
|
2015-08-06 05:48:42 -05:00
|
|
|
use b::*;
|
2015-08-05 14:56:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub mod b {
|
2015-08-06 05:48:42 -05:00
|
|
|
use a::*;
|
2015-08-05 14:56:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
use a::*;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|