mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
162 B
Rust
12 lines
162 B
Rust
// run-pass
|
|
#![allow(unused_variables)]
|
|
pub fn main() {
|
|
let x = (0, 2);
|
|
|
|
match x {
|
|
(0, ref y) => {}
|
|
(y, 0) => {}
|
|
_ => (),
|
|
}
|
|
}
|