about summary refs log tree commit diff
path: root/tests/ui/consts/const_in_pattern/incomplete-slice.rs
blob: 4984acaaf798561948f34a8171f58a7872454dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(PartialEq)]
enum E {
    A,
}

const E_SL: &[E] = &[E::A];

fn main() {
    match &[][..] {
        //~^ ERROR non-exhaustive patterns: `&[]` and `&[_, _, ..]` not covered [E0004]
        E_SL => {}
    }
}