mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
207 B
Rust
18 lines
207 B
Rust
// 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() {
|
|
}
|