-
Notifications
You must be signed in to change notification settings - Fork 1.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
[bug] -> _
inference fails for &'static str
#16676
Comments
related to add_return_type assist |
similar result for fn test<'a, 'b>(a: &'a u8, b: &'b u8) -> _ {
b
} However for this struct S<'a>(&'a u8);
fn test(s: S) -> _ {
s
} There are two code actions:
|
"replace with the correct return type: |
Is that a rustc "error" (?) then? |
Try |
Yes, I know what you mean but the fact that there is a difference between |
Maybe. The rust-analyzer diagnostics and assists are completely separate from the ones in the compiler. Most of the time they're worse, but I've seen cases where the RA fixes were better than the compiler's. In this case I suspect RA gets it right mostly by accident. |
rust-analyzer version: 2023-12-18
rustc version: 1.76
Has the correct code action (3) but if we choose 2 we get
which doesn't compile.
The text was updated successfully, but these errors were encountered: