rust/src/test/ui/error-codes/E0527.rs
2018-12-25 21:08:33 -07:00

9 lines
163 B
Rust

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