Skip to content
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

Closed
sapphire-arches opened this issue Mar 5, 2016 · 7 comments
Closed

Apparent rustc hang on malformed trait declaration #32069

sapphire-arches opened this issue Mar 5, 2016 · 7 comments
Labels
I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️

Comments

@sapphire-arches
Copy link
Contributor

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:

  1. Create a new project with cargo new --bin bugtest
  2. mkdir src/ui
  3. Put the following code in src/ui/mod.rs
pub trait Widget {
    pub fn draw(&self)
}

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

rustc --version --verbose:

rustc 1.9.0-nightly (7b0b80ae2 2016-03-02)
binary: rustc
commit-hash: 7b0b80ae21a195a5dba91d557f94a96136c27eaf
commit-date: 2016-03-02
host: x86_64-unknown-linux-gnu
release: 1.9.0-nightly
@jonas-schievink
Copy link
Contributor

You don't actually include that file, so it shouldn't get compiled. Did you forget a step in the reproduction?

@sapphire-arches
Copy link
Contributor Author

I did indeed, you need to declare mod ui; in in main.rs.

@dimbleby
Copy link

dimbleby commented Mar 6, 2016

#31804 again, presumably?

@sapphire-arches
Copy link
Contributor Author

I don't believe so. In this case, the compiler never gets around to
producing an error. In addition, this appears to cause a hang only when the
malformed trait is in a file other than main.rs: putting the same code in
main.rs produces a compiler error as expected.

@steveklabnik steveklabnik added the I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ label Mar 11, 2016
@steveklabnik
Copy link
Member

(not exactly an ICE, but hanging forever is close)

@dimbleby
Copy link

Fixed in the current nightly. Perhaps this was after all the same as #31804 all along.

   Compiling bugtest v0.1.0 (file:///data/dch/bugtest)
src/ui/mod.rs:2:5: 2:8 error: expected one of `const`, `extern`, `fn`, `type`, or `unsafe`, found `pub`
src/ui/mod.rs:2     pub fn draw(&self)
                    ^~~
error: aborting due to previous error
error: Could not compile `bugtest`.

To learn more, run the command again with --verbose.
rustc --version
rustc 1.9.0-nightly (30a3849f2 2016-03-30)

@sapphire-arches
Copy link
Contributor Author

Issue has been resolved, closing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Projects
None yet
Development

No branches or pull requests

5 participants
@steveklabnik @dimbleby @sapphire-arches @jonas-schievink and others