blob: 851bef8f2c7e8c5eb65971ec036ddb3b46e4d230 [file] [log] [blame]
error: expected one of `.`, `?`, `{`, or an operator, found `;`
--> $DIR/match-refactor-to-expr.rs:8:9
|
LL | match
| -----
| |
| while parsing this `match` expression
| help: try removing this `match`
LL | Some(4).unwrap_or(5)
| - expected one of `.`, `?`, `{`, or an operator
LL |
LL | ;
| ^ unexpected token
error: aborting due to previous error