-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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: debuginfo::set_members_of_composite_type() #11083
Labels
A-debuginfo
Area: Debugging information in compiled programs (DWARF, PDB, etc.)
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Comments
Wow.
|
This is caused by pub struct Window<'a> {
callbacks: WindowCallbacks<'a>
}
struct WindowCallbacks<'a> {
pos_callback: Option<WindowPosCallback<'a>>,
}
pub type WindowPosCallback<'a> = 'a |&Window, i32, i32|; |
I'm looking into this right now. |
michaelwoerister
added a commit
to michaelwoerister/rust
that referenced
this issue
Jan 2, 2014
michaelwoerister
added a commit
to michaelwoerister/rust
that referenced
this issue
Jan 2, 2014
I'm getting this issue with the glfw-rs again: #14385 |
flip1995
pushed a commit
to flip1995/rust
that referenced
this issue
Jul 31, 2023
[`semicolon_if_nothing_returned`]: add an autofix changelog: [`semicolon_if_nothing_returned`]: add an autofix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-debuginfo
Area: Debugging information in compiled programs (DWARF, PDB, etc.)
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Compiling this modified glfw-rs with
-Z extra-debug-info
:https://github.com/metajack/glfw-rs/tree/servo-rustup
gives:
``error: internal compiler error: debuginfo::set_members_of_composite_type() - Already completed forward declaration re-encountered.`
cc @jdm @michaelwoerister
The text was updated successfully, but these errors were encountered: