summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0532.rs
blob: 486da0e029ef386c3fc083199b50d530f3b7fdd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    let value = 1;

    match SomeStruct(value) {
        StructConst1(_) => { },
        //~^ ERROR expected tuple struct or tuple variant, found constant `StructConst1`
        _ => { },
    }

    struct SomeStruct(u8);

    const StructConst1 : SomeStruct = SomeStruct(1);
    const StructConst2 : SomeStruct = SomeStruct(2);
}