-
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
ICE when building with --emit=mir #60390
Comments
I think this is fixed in 3a83cb2#diff-730459e7733d29bbbb60bd1962bf1842 which might explain why it doesn't occur on nightly |
triage: Probably fixed by #59036. Normally an ICE would lead me to tag this as P-high, but the fact that this is only exposed by |
assigning to self to confirm that #59036 is the reason this is fixed, and (if need be) add a regression test. |
Here's a slightly smaller case of what appears to potentially be the same thing which shows up if you select the "show MIR" option in the Playground enum E {
V(())
}
pub fn main() {} In particular the following error is observed:
|
I think this issue is fixed in all channels. I tried stable and nightly both locally and on play.rust-lang.org, and couldn't get any ICEs. Should we add a test? Otherwise we can just close I think. |
Adding a test with |
Add more regression tests Closes rust-lang#58490, closes rust-lang#60390, closes rust-lang#62504, closes rust-lang#67739, closes rust-lang#69092 r? @Centril
This occurs on 1.34.1 and 1.34.0, is a regression from 1.33.0, and does.. not occur on nightly?
Reproduction:
compiled with
RUST_BACKTRACE=1 rustc --emit=mir test.rs
Yields:
I found this in building crates like
cc
andnum-derive
but pared it down to thisThe text was updated successfully, but these errors were encountered: