-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
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
Rust incorrectly accepts unbalanced parentheses #58886
Labels
A-parser
Area: The parsing of Rust source code to an AST
C-bug
Category: This is a bug.
P-high
High priority
regression-from-stable-to-beta
Performance or correctness regression from stable to beta.
Comments
Likely introduced in #57944. I'll take a look at it tomorrow. It's likely me forgetting to call |
Thanks for reporting this and fixing, with tests! This can be a bit disconcerting if you dev on nightly, but target some stable (which will then fail to build): dekellum/body-image@dc78182b66 |
estebank
added a commit
to estebank/rust
that referenced
this issue
Mar 7, 2019
bors
added a commit
that referenced
this issue
Mar 8, 2019
Always emit unclosed delimiter diagnostics Fix #58886.
pietroalbini
pushed a commit
to pietroalbini/rust
that referenced
this issue
Mar 16, 2019
est31
added a commit
to est31/mimas
that referenced
this issue
Sep 3, 2020
There was a compiler bug [1] which made it accept code with bad delimiters. I wrote commit [2] with a compiler that included the bug and thus didn't notice the wrongly placed delimiters. Therefore, on any non-buggy compilers, the build is broken between that commit and this one. This commit fixes this. [1]: rust-lang/rust#58886 [2]: a9b4a2c "id_src actually isn't needed"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-parser
Area: The parsing of Rust source code to an AST
C-bug
Category: This is a bug.
P-high
High priority
regression-from-stable-to-beta
Performance or correctness regression from stable to beta.
Rust incorrectly accepts the following code (which is missing a
)
):So far this seems to only happen if the code is inside a submodule. Shell script to reproduce:
My compiler version:
rustc 1.34.0-nightly (0ea22717a 2019-03-02)
The text was updated successfully, but these errors were encountered: