@@ -24,7 +24,7 @@ error: expected one of `!`, `)`, `,`, `.`, `::`, `?`, `{`, or an operator, found
2424LL | if (a and b) {
2525 | ^^^
2626 | |
27- | expected one of 8 possible tokens here
27+ | expected one of 8 possible tokens
2828 | help: use `&&` instead of `and` for the boolean operator
2929
3030error: expected one of `!`, `)`, `,`, `.`, `::`, `?`, `{`, or an operator, found `or`
@@ -33,7 +33,7 @@ error: expected one of `!`, `)`, `,`, `.`, `::`, `?`, `{`, or an operator, found
3333LL | if (a or b) {
3434 | ^^
3535 | |
36- | expected one of 8 possible tokens here
36+ | expected one of 8 possible tokens
3737 | help: use `||` instead of `or` for the boolean operator
3838
3939error: expected one of `!`, `.`, `::`, `?`, `{`, or an operator, found `and`
@@ -42,7 +42,7 @@ error: expected one of `!`, `.`, `::`, `?`, `{`, or an operator, found `and`
4242LL | while a and b {
4343 | ^^^
4444 | |
45- | expected one of `!`, `.`, `::`, `?`, `{`, or an operator here
45+ | expected one of `!`, `.`, `::`, `?`, `{`, or an operator
4646 | help: use `&&` instead of `and` for the boolean operator
4747
4848error: expected one of `!`, `.`, `::`, `?`, `{`, or an operator, found `or`
@@ -51,7 +51,7 @@ error: expected one of `!`, `.`, `::`, `?`, `{`, or an operator, found `or`
5151LL | while a or b {
5252 | ^^
5353 | |
54- | expected one of `!`, `.`, `::`, `?`, `{`, or an operator here
54+ | expected one of `!`, `.`, `::`, `?`, `{`, or an operator
5555 | help: use `||` instead of `or` for the boolean operator
5656
5757error: aborting due to 6 previous errors
0 commit comments