
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
7 lines
93 B
Rust
7 lines
93 B
Rust
//@ run-pass
|
|
|
|
mod foo {
|
|
pub fn bar(_offset: usize) { }
|
|
}
|
|
|
|
pub fn main() { foo::bar(0); }
|