summaryrefslogtreecommitdiffstats
path: root/tests/ui/match/issue-72896-non-partial-eq-const.rs
blob: a3095f0be83c1e45b898847d3fb1e0968647d64a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// run-pass
trait EnumSetType {
    type Repr;
}

enum Enum8 { }
impl EnumSetType for Enum8 {
    type Repr = u8;
}

#[derive(PartialEq, Eq)]
struct EnumSet<T: EnumSetType> {
    __enumset_underlying: T::Repr,
}

const CONST_SET: EnumSet<Enum8> = EnumSet { __enumset_underlying: 3 };

fn main() {
    match CONST_SET {
        CONST_SET => { /* ok */ } //~WARN: must implement `PartialEq`
        //~| previously accepted
        _ => panic!("match fell through?"),
    }
}