Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
or-patterns
/
while-parsing-this-or-pattern.rs
blob: b034a52ac9451b00d713279caaf18db1d6cee23b [
file
] [
log
] [
blame
]
// 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
}
}