-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Internal compiler error #15260
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
Simpler test: struct Foo {
a: uint,
}
fn main(){
let bar = Foo {a: 29};
let baz = {
let Foo {a: _, a: _} = bar;
};
} Backtrace:
|
bors
added a commit
that referenced
this issue
Jun 30, 2014
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Jul 17, 2023
…e-3, r=lowr internal: Migrate assists to the structured snippet API, part 3 Continuing from rust-lang#15231 Migrates the following assists: - `add_missing_match_arms` - `fix_visibility` - `promote_local_to_const` The `add_missing_match_arms` changes are best reviewed commit-by-commit since they're relatively big changes compared to the rest of the commits.
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Nov 16, 2023
…e-4, r=Veykril internal: Migrate assists to the structured snippet API, part 4 Continuing from rust-lang#15260 Migrates the following assists: - `add_turbo_fish` - `add_type_ascription` - `destructure_tuple_binding` - `destructure_tuple_binding_in_subpattern` I did this a while ago, but forgot to make a PR for the changes until now. 😅
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was playing around with some simple code and after making a mistake (typo) and trying to compile it I a got some "semi-ambiguous" error message. The first part helped me to identify the issue while the second part did confused me a bit.
I ran this thru several folks at the rust IRC and they suggested the report.
The text was updated successfully, but these errors were encountered: