Skip to content
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

Open
oriongonza opened this issue Feb 26, 2024 · 7 comments
Open

[bug] -> _ inference fails for &'static str #16676

oriongonza opened this issue Feb 26, 2024 · 7 comments
Labels
A-assists A-ty type system / type inference / traits / method resolution C-bug Category: bug

Comments

@oriongonza
Copy link

rust-analyzer version: 2023-12-18

rustc version: 1.76

fn infer() -> _ {
    "hi"
}

image
Has the correct code action (3) but if we choose 2 we get

fn infer() -> &str {
    "hi"
}

which doesn't compile.

@oriongonza oriongonza added the C-bug Category: bug label Feb 26, 2024
@Young-Flash
Copy link
Member

related to add_return_type assist

@Veykril Veykril added the A-ty type system / type inference / traits / method resolution label Feb 26, 2024
@oriongonza
Copy link
Author

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:

  1. Add this function return type: S<'_> (good)
  2. Replace with the correct return type: S<'static> (?)

@lnicola
Copy link
Member

lnicola commented Feb 28, 2024

"replace with the correct return type: S<'static>" is from cargo check.

@oriongonza
Copy link
Author

Is that a rustc "error" (?) then?

@lnicola
Copy link
Member

lnicola commented Feb 28, 2024

Try cargo check on that code and you'll see what I mean.

@oriongonza
Copy link
Author

Yes, I know what you mean but the fact that there is a difference between cargo check and r-a should be considered a bug, right?

@lnicola
Copy link
Member

lnicola commented Feb 28, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-assists A-ty type system / type inference / traits / method resolution C-bug Category: bug
Projects
None yet
Development

No branches or pull requests

4 participants