1 2 3 4 5 6 7 8 9 10 11
// run-pass #![allow(unused_variables)] pub fn main() { let x = (0, 2); match x { (0, ref y) => {} (y, 0) => {} _ => (), } }