summaryrefslogtreecommitdiffstats
path: root/tests/ui/or-patterns/while-parsing-this-or-pattern.rs
blob: b9bfb8638b2ced82bf80059fb5af73be8336ed75 (plain)
1
2
3
4
5
6
7
8
9
// Test the parser for the "while parsing this or-pattern..." label here.

fn main() {
    match Some(42) {
        Some(42) | .=. => {} //~ ERROR expected pattern, found `.`
        //~^ while parsing this or-pattern starting here
        //~| NOTE expected pattern
    }
}