mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 19:47:38 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
12 lines
154 B
Rust
12 lines
154 B
Rust
//@ run-pass
|
|
|
|
mod foo {
|
|
pub fn x() -> isize { return 1; }
|
|
}
|
|
|
|
mod bar {
|
|
pub fn y() -> isize { return 1; }
|
|
}
|
|
|
|
pub fn main() { foo::x(); bar::y(); }
|