about summary refs log tree commit diff
path: root/tests/ui/or-patterns/while-parsing-this-or-pattern.rs
blob: b034a52ac9451b00d713279caaf18db1d6cee23b (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 `.`
        //~^ NOTE while parsing this or-pattern starting here
        //~| NOTE expected pattern
    }
}