-
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
internal compiler error: ID not mapped to struct fields: variant Value in Value (id=13) #17800
Labels
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Comments
Backtrace:
|
Seems to happen with any enum in the same crate, e.g. enum MyOption<T> {
MySome(T),
MyNone,
}
fn main() {
match MySome(()) {
MySome { x } => (),
_ => (),
}
} If I use
|
Traces from
and for
|
@kmcallister I have a fix for this on an older PR that somehow hadn't made it in yet. Will update in a sec. |
Cool! |
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm following the guide and the compiler is telling me that I found a bug in the compiler. (That's so frickin' cool btw.)
I'm on 'rustc (e434aa1 2014-10-04 17:47:06 +0000)', right now, I'm recompiling with the latest head to see if it still exists. I did try to search to see if this was already reported, I didn't find anything, but I don't really know what to call it.
This is the file that I'm trying to compile:
I know that the problem is the
Value{n}
instead ofValue(n)
in the pattern matching, but the error message told me to report it anyway.The text was updated successfully, but these errors were encountered: