rust/src/test/ui/missing/missing-comma-in-match.stderr

11 lines
370 B
Plaintext
Raw Normal View History

error: expected one of `,`, `.`, `?`, `}`, or an operator, found `=>`
--> $DIR/missing-comma-in-match.rs:16:18
|
2018-02-28 18:56:07 +00:00
LL | &None => 1
2018-02-24 03:38:36 +00:00
| - help: missing a comma here to end this `match` arm
2018-02-28 18:56:07 +00:00
LL | &Some(2) => { 3 }
| ^^ expected one of `,`, `.`, `?`, `}`, or an operator here
error: aborting due to previous error