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

#13354 triggers tons of false positives when unable to resolve output type #13430

Closed
Ten0 opened this issue Oct 17, 2022 · 4 comments
Closed

Comments

@Ten0
Copy link

Ten0 commented Oct 17, 2022

I'm getting tons of false positives since today's release of #13354:

the return type of the containing function does not implement `FromResidual`

(incorrect-try-target)

This happens when a function is returning a Result<_, Fail<T>> and rust-analyzer is not able to infer the concrete type T.

I suspect that is specifically here that something is incorrect, but I'm not expert enough on RA to be able to read the meaning of all of the Option layers there proficiently. I suspect someone might be able to identify why this happens by just reading my above description - please let me know if more details are needed.

(I failed to create a minimal repro because I'm not sure how specifically to build a code in which RA is unable to infer the return type, although these are pretty common in Diesel)

rust-analyzer version: 0.3.1248-standalone
rustc version: rustc 1.63.0

NB: disabling the diagnostic makes RA usable again:

	"rust-analyzer.diagnostics.disabled": [
		"incorrect-try-target"
	],
@lnicola
Copy link
Member

lnicola commented Oct 17, 2022

Dupe of #13429

@lnicola lnicola closed this as completed Oct 17, 2022
@Ten0
Copy link
Author

Ten0 commented Oct 17, 2022

When you take time to write the issue and by the time you submit it somebody else has already submitted it... you know it's gonna get fixed quickly ^^

@Veykril
Copy link
Member

Veykril commented Oct 17, 2022

What exactly is the _ in Result<_, Fail<T>>?

@Ten0
Copy link
Author

Ten0 commented Oct 17, 2022

What exactly is the _ in Result<_, Fail<T>>?

Whatever it is the issue happens as far as I can tell. It's very possible it's something RA can't resolve either though.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants