1 2 3 4 5 6 7 8 9
fn main() { struct A (i32, i32); let a = A (0, 1); match a { A (0, ..) => {}, _ => {} } }