rust/tests/ui/consts/const_prop_slice_pat_ice.rs

9 lines
110 B
Rust

//@ check-pass
fn main() {
match &[0, 1] as &[i32] {
[a @ .., x] => {}
&[] => {}
}
}