
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
11 lines
142 B
Rust
11 lines
142 B
Rust
//@ run-pass
|
|
|
|
use std::env;
|
|
|
|
pub fn main() {
|
|
for arg in env::args() {
|
|
match arg.clone() {
|
|
_s => { }
|
|
}
|
|
}
|
|
}
|