10 lines
274 B
Rust
10 lines
274 B
Rust
|
// 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 staring here
|
||
|
//~| NOTE expected pattern
|
||
|
}
|
||
|
}
|