We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
into
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
rust-analyzer version: 0.4.1765-standalone
rustc version: rustc 1.74.0 (79e9716c9 2023-11-13)
relevant settings: None
before:
let a: u16 = 123; let b: i32 = a.into();
after (actual):
let a: u16 = 123; let b: i32 = U::from(a);
after (expected):
let a: u16 = 123; let b: i32 = i32::from(a);
The U does not get correctly replaced with the target type, in this case i32
U
i32
The text was updated successfully, but these errors were encountered:
as Self
No branches or pull requests
rust-analyzer version: 0.4.1765-standalone
rustc version: rustc 1.74.0 (79e9716c9 2023-11-13)
relevant settings: None
before:
after (actual):
after (expected):
The
U
does not get correctly replaced with the target type, in this casei32
The text was updated successfully, but these errors were encountered: