rust/tests/ui/missing/missing-comma-in-match.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
364 B
Plaintext
Raw Normal View History

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