2018-03-11 03:04:15 -05:00
|
|
|
error: expected one of `.`, `?`, `{`, or an operator, found `;`
|
2020-07-02 00:32:12 -05:00
|
|
|
--> $DIR/match-refactor-to-expr.rs:8:9
|
2018-03-11 03:04:15 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | match
|
2018-10-28 13:41:23 -05:00
|
|
|
| -----
|
|
|
|
| |
|
2022-01-12 14:43:24 -06:00
|
|
|
| while parsing this `match` expression
|
2018-10-28 13:41:23 -05:00
|
|
|
| help: try removing this `match`
|
2020-07-02 00:32:12 -05:00
|
|
|
LL | Some(4).unwrap_or(5)
|
|
|
|
| - expected one of `.`, `?`, `{`, or an operator
|
2019-03-09 06:03:44 -06:00
|
|
|
LL |
|
|
|
|
LL | ;
|
2018-03-11 03:04:15 -05:00
|
|
|
| ^ unexpected token
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|