25 lines
224 B
Rust
25 lines
224 B
Rust
// 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() {}
|