os-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
366 B
Text
Raw Normal View History

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