-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
"intrinsic getting reified" #34123
Labels
A-intrinsics
Area: Intrinsics
C-bug
Category: This is a bug.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
requires-nightly
This issue requires a nightly compiler in some way.
Comments
steveklabnik
added
the
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
label
Jun 6, 2016
I think this case is similar: https://is.gd/nTzJmH (But I'm not too worried since it's behind one of those "going to become an error" warnings.) |
This appears to be fixed
as @solson predicted. closing! |
Adding |
New repro: #![feature(intrinsics)]
fn main(){
let transmute = std::intrinsics::transmute;
let assign: unsafe extern "rust-intrinsic" fn(*const i32) -> *mut i32 = transmute;
} Rust version: Backtrace:
|
jonas-schievink
added
A-intrinsics
Area: Intrinsics
requires-nightly
This issue requires a nightly compiler in some way.
labels
Jun 13, 2020
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Nov 8, 2020
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
Nov 8, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-intrinsics
Area: Intrinsics
C-bug
Category: This is a bug.
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
requires-nightly
This issue requires a nightly compiler in some way.
While trying to reproduce #12633, one of my sillier code samples caused an ICE:
output (edited to update backtrace):
The text was updated successfully, but these errors were encountered: