blob: 91f53ab2805a8ef6fca64df001f467ff950897fe [file] [log] [blame]
// compile-pass
// skip-codegen
#![allow(warnings)]
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() {}