blob: 8c528bc0a1ebcb4005a3e87c7c034f3be2f59a99 [file] [log] [blame] [edit]
//@ 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() {}