blob: 15107ab9a258b699a131bba45734928a817f6ff5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|