mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 11:58:17 +00:00
12 lines
200 B
Rust
12 lines
200 B
Rust
//! Regression test for https://github.com/rust-lang/rust/issues/14393
|
|
|
|
//@ run-pass
|
|
|
|
fn main() {
|
|
match ("", 1_usize) {
|
|
(_, 42_usize) => (),
|
|
("", _) => (),
|
|
_ => ()
|
|
}
|
|
}
|