summaryrefslogtreecommitdiffstats
path: root/tests/ui/or-patterns/issue-64879-trailing-before-guard.rs
blob: 181c770096a5f78063c78847294045366e6d8458 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// In this regression test we check that a trailing `|` in an or-pattern just
// before the `if` token of a `match` guard will receive parser recovery with
// an appropriate error message.

enum E { A, B }

fn main() {
    match E::A {
        E::A |
        E::B | //~ ERROR a trailing `|` is not allowed in an or-pattern
        if true => {
            let recovery_witness: bool = 0; //~ ERROR mismatched types
        }
    }
}