Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
9 lines
79 B
Rust
9 lines
79 B
Rust
//@ run-pass
|
|
|
|
fn main() {
|
|
match 42 {
|
|
x if x < 7 => (),
|
|
_ => ()
|
|
}
|
|
}
|