We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Executing the following:
fn main() { 2 + +2; }
results in:
foo.rs:2:7: 2:8 error: expected expression, found `+` foo.rs:2 2 + +2; ^ error: aborting due to 2 previous errors
The reference makes it clear that the above code would be rejected. However, the error count indicated doesn't appear to be correct.
The text was updated successfully, but these errors were encountered:
Introduced between nightly-2016-04-22 and nightly-2016-04-25 (Changes)
nightly-2016-04-22
nightly-2016-04-25
I'm pretty sure I found the problem and should have a fix ready soon.
Sorry, something went wrong.
Auto merge of #36502 - TimNN:correct-cancel, r=jseyfried
0b03ba1
correctly cancel some errors Fixes #36499. I also (proactively) changed all other calls in `parser.rs` to use `Handler::cancel`.
No branches or pull requests
Executing the following:
results in:
The reference makes it clear that the above code would be rejected. However, the error count indicated doesn't appear to be correct.
The text was updated successfully, but these errors were encountered: