Files
rust/tests/ui/match/issue-33498.rs

12 lines
163 B
Rust
Raw Normal View History

//@ run-pass
#![allow(unused_variables)]
2016-08-07 13:55:08 +02:00
pub fn main() {
let x = (0, 2);
match x {
(0, ref y) => {}
(y, 0) => {}
_ => (),
}
}