Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
10 lines
128 B
Rust
10 lines
128 B
Rust
//@ run-pass
|
|
|
|
fn main() {
|
|
match ("", 1_usize) {
|
|
(_, 42_usize) => (),
|
|
("", _) => (),
|
|
_ => ()
|
|
}
|
|
}
|