1 2 3 4 5 6 7 8 9
fn main() { let r = &[1, 2, 3, 4]; match r { &[a, b] => { //~^ ERROR E0527 println!("a={}, b={}", a, b); } } }