]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/missing-comma-in-match.stderr
779359341073ea7f54141f9521a7e81a917179e0
[rust.git] / src / test / ui / suggestions / missing-comma-in-match.stderr
1 error: expected one of `,`, `.`, `?`, `}`, or an operator, found `=>`
2   --> $DIR/missing-comma-in-match.rs:16:18
3    |
4 LL |         &None => 1
5    |                   - help: missing a comma here to end this `match` arm
6 LL |         &Some(2) => { 3 }
7    |                  ^^ expected one of `,`, `.`, `?`, `}`, or an operator here
8
9 error: aborting due to previous error
10