mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-27 19:16:36 +00:00
9 lines
111 B
Rust
9 lines
111 B
Rust
//@ run-pass
|
|
|
|
pub mod foo {
|
|
pub fn bar() {
|
|
println!("Hello world!");
|
|
}
|
|
}
|
|
use foo::bar as main;
|