2018-03-11 00:04:15 -08:00
|
|
|
error: expected one of `.`, `?`, `{`, or an operator, found `;`
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $DIR/match-refactor-to-expr.rs:6:9
|
2018-03-11 00:04:15 -08:00
|
|
|
|
|
2018-10-28 11:41:23 -07:00
|
|
|
LL | match //~ NOTE while parsing this match expression
|
|
|
|
| -----
|
|
|
|
| |
|
|
|
|
| while parsing this match expression
|
|
|
|
| help: try removing this `match`
|
2018-03-11 00:04:15 -08:00
|
|
|
LL | Some(4).unwrap_or_else(5)
|
|
|
|
| - expected one of `.`, `?`, `{`, or an operator here
|
|
|
|
LL | //~^ NOTE expected one of `.`, `?`, `{`, or an operator here
|
|
|
|
LL | ; //~ NOTE unexpected token
|
|
|
|
| ^ unexpected token
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|