blob: 50f74eeb5ed08ce72d38ff64ced51c53b3f26051 (
plain)
1
2
3
4
5
6
7
8
9
10
|
error: expected one of `,`, `.`, `?`, `}`, or an operator, found `=>`
--> $DIR/missing-comma-in-match.rs:6:18
|
LL | &None => 1
| - help: missing a comma here to end this `match` arm
LL | &Some(2) => { 3 }
| ^^ expected one of `,`, `.`, `?`, `}`, or an operator
error: aborting due to 1 previous error
|