summaryrefslogtreecommitdiffstats
path: root/src/test/ui/missing/missing-comma-in-match.stderr
blob: fe210f697c446d68abbca2f0a18eefd96773b26e (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 previous error