about summary refs log tree commit diff
path: root/tests/ui/consts/match_ice.rs
blob: 477a2de09a46fbec56f50b06d077c5eb46ff36f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 constant of non-structural type `S` in a pattern
    }
    const K: &T = &T;
    match K {
        K => {}
    }
}