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