summary refs log tree commit diff
path: root/src/test/ui/consts/match_ice.rs
blob: 1e495438e836cde041550816c42937d560bcc265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// https://github.com/rust-lang/rust/issues/53708

struct S;

#[derive(PartialEq, Eq)]
struct T;

fn main() {
    const C: &S = &S;
    match C {
        C => {}
        //~^ ERROR to use a constant of type `S` in a pattern, `S` must be annotated with
        //~| ERROR to use a constant of type `S` in a pattern, `S` must be annotated with
    }
    const K: &T = &T;
    match K { //~ ERROR non-exhaustive patterns: `&T` not covered
        K => {}
    }
}