mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 19:54:24 +00:00
13 lines
185 B
Rust
13 lines
185 B
Rust
// run-pass
|
|
// pretty-expanded FIXME #23616
|
|
|
|
mod foo {
|
|
pub fn x() -> isize { return 1; }
|
|
}
|
|
|
|
mod bar {
|
|
pub fn y() -> isize { return 1; }
|
|
}
|
|
|
|
pub fn main() { foo::x(); bar::y(); }
|