mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 19:57:10 +00:00
11 lines
128 B
Rust
11 lines
128 B
Rust
//@ run-pass
|
|
|
|
use spam::{ham, eggs};
|
|
|
|
mod spam {
|
|
pub fn ham() { }
|
|
pub fn eggs() { }
|
|
}
|
|
|
|
pub fn main() { ham(); eggs(); }
|