-
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
ICE: Failure in unsupported-cast.rs #13993
Labels
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
Comments
visiting for triage
This is still valid, I get an ICE when compiling:
|
Still broken Here is the relevant code easy reference: #![feature(libc)]
extern crate libc;
fn main() {
println!("{:?}", 1.0 as *const libc::FILE); // Can't cast float to foreign.
}
|
Merged
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Feb 13, 2023
…eykril fix: substitute vscode variables in `config.serverPath` From comment by `@Veykril` in rust-lang/rust-analyzer#13939 (comment): > Yep, we pull the server path first, then substitute the configs, that's the wrong order. https://github.com/rust-lang/rust-analyzer/blob/6e52c64031825920983515b9e975e93232739f7f/editors/code/src/ctx.ts#L155-L161 Fixes rust-lang#13939
bors
pushed a commit
to rust-lang-ci/rust
that referenced
this issue
Jan 28, 2025
changelog: [`useless-nonzero-new_unchecked`]: new lint Close rust-lang#13991 ### What it does Checks for `NonZero*::new_unchecked(<literal>)` being used in a `const` context. ### Why is this bad? Using `NonZero*::new_unchecked()` is an `unsafe` function and requires an `unsafe` context. When used with an integer literal in a `const` context, `NonZero*::new().unwrap()` will provide the same result with identical runtime performances while not requiring `unsafe`. ### Example ```no_run const PLAYERS: NonZeroUsize = unsafe { NonZeroUsize::new_unchecked(3) }; ``` Use instead: ```no_run const PLAYERS: NonZeroUsize = NonZeroUsize::new(3).unwrap(); ```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In order to land #13967 I'm ignoring the test in src/test/compile-fail/unsupported-cast.rs which currently explodes rustc.
The text was updated successfully, but these errors were encountered: