mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 02:00:38 +00:00
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) => (),
|
|
("", _) => (),
|
|
_ => ()
|
|
}
|
|
}
|