blob: 4ed06bff803415667d04f8ee325a373c188feb64 [file] [log] [blame]
// check-pass
mod foo {
pub fn bar() {}
}
pub use foo::*;
use b::bar;
mod foobar {
use super::*;
}
mod a {
pub mod bar {}
}
mod b {
pub use a::bar;
}
fn main() {}