-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Compilation fails without error message #41139
Comments
According to the Playpen, this actually segfaults the compiler (on all channels). Doing a Release build reveals why (on stable and beta):
On nightly, the error is different (since LLVM assertions are enabled, even though they don't catch the error in debug builds):
|
This is a regression form 1.11 to 1.12, likely introduced by mir -- 1.12 + |
Backtrace on nightly:
|
This is not supposed to compile. We are taking a reference to an unsized rvalue, which is silly. |
This rust code fails in compilation without error message:
When compiling with
cargo build --verbose
I get:rustc --version --verbose
:The text was updated successfully, but these errors were encountered: