mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
210 B
Rust
16 lines
210 B
Rust
// run-pass
|
|
#![allow(unused_imports)]
|
|
|
|
use foo::zed;
|
|
use bar::baz;
|
|
|
|
mod foo {
|
|
pub mod zed {
|
|
pub fn baz() { println!("baz"); }
|
|
}
|
|
}
|
|
mod bar {
|
|
pub use foo::zed::baz;
|
|
}
|
|
pub fn main() { baz(); }
|