2018-03-11 03:04:15 -05:00
|
|
|
error: expected one of `.`, `?`, `{`, or an operator, found `;`
|
2019-01-06 09:33:05 -06:00
|
|
|
--> $DIR/match-refactor-to-expr.rs:6:9
|
2018-03-11 03:04:15 -05:00
|
|
|
|
|
2018-10-28 13:41:23 -05:00
|
|
|
LL | match //~ NOTE while parsing this match expression
|
|
|
|
| -----
|
|
|
|
| |
|
|
|
|
| while parsing this match expression
|
|
|
|
| help: try removing this `match`
|
2018-03-11 03:04:15 -05: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
|
|
|
|
|