]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const_prop_slice_pat_ice.rs
Do not suggest `let_else` if no bindings would be introduced
[rust.git] / src / test / ui / consts / const_prop_slice_pat_ice.rs
1 // check-pass
2
3 fn main() {
4     match &[0, 1] as &[i32] {
5         [a @ .., x] => {}
6         &[] => {}
7     }
8 }