Sign in
android
/
toolchain
/
rustc
/
635618df8991b8a005e435895ea0b1eee7e3faf0
/
.
/
tests
/
ui
/
imports
/
glob-cycles.rs
blob: f354cc885d00d3c2091dbb3b0579d73a2e42ce65 [
file
] [
log
] [
blame
]
// check-pass
mod
foo
{
pub
use
bar
::*;
pub
use
main
as
f
;
}
mod
bar
{
pub
use
foo
::*;
}
pub
use
foo
::*;
pub
use
baz
::*;
mod
baz
{
pub
use
super
::*;
}
pub
fn
main
()
{}