Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
imports
/
issue-4865-3.rs
blob: 130223558cb8465a94694ea95b28b6a9af278660 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{
}