-
Notifications
You must be signed in to change notification settings - Fork 13.3k
'rustc' panicked at 'index out of bounds: the len is 6 but the index is 6' #19195
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
Labels
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Comments
alexcrichton
added a commit
to alexcrichton/rust
that referenced
this issue
Nov 22, 2014
Is there a temporary workaround? Thanks! |
I just tripped over this ICE in serde. I love c-reduce. It came up with the following code that reproduces the bug by reducing 203K down to this in 15 minutes: #![crate_type = "rlib"]
mod e {
mod builder {
struct Serializer;
impl Serializer {
fn serialize_int(self, v:int) {
write!(self, "{}", v)
}
}
}
} Here's the error:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When trying to build
https://github.com/dan-t/rust-confsolve
withI'm getting
The text was updated successfully, but these errors were encountered: