rust/tests/ui/consts/const_prop_slice_pat_ice.rs
2023-01-11 09:32:08 +00:00

9 lines
109 B
Rust

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