mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 17:29:26 +00:00
22 lines
231 B
Rust
22 lines
231 B
Rust
fn magic_fn() -> usize {
|
|
1234
|
|
}
|
|
|
|
mod a {
|
|
pub fn magic_fn() -> usize {
|
|
2345
|
|
}
|
|
}
|
|
|
|
mod b {
|
|
pub fn magic_fn() -> usize {
|
|
3456
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
magic_fn();
|
|
a::magic_fn();
|
|
b::magic_fn();
|
|
}
|