-
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
Apparent rustc hang on malformed trait declaration #32069
Comments
You don't actually include that file, so it shouldn't get compiled. Did you forget a step in the reproduction? |
I did indeed, you need to declare |
#31804 again, presumably? |
I don't believe so. In this case, the compiler never gets around to |
(not exactly an ICE, but hanging forever is close) |
Fixed in the current nightly. Perhaps this was after all the same as #31804 all along.
|
Issue has been resolved, closing. |
rustc
appears to hang when there is a malformed trait declaration in a submodule. Specifically, I am able to reliably induce the hang with the following setup:cargo new --bin bugtest
mkdir src/ui
src/ui/mod.rs
cargo build
will appear to hang. I'm not sure if it's an infinite loop, or just really really slow.Note the lack of a semicolon after the function declaration. While this is indeed malformed rust code, I would not expect the compiler to be extraordinarily slow to parse this code.
Meta
The text was updated successfully, but these errors were encountered: