You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see that one is syntax and the other logic, but from user’s perspective it’s pretty much the same error. In both cases VScode doesn’t suggest the obvious quick fix.
The text was updated successfully, but these errors were encountered:
Thanks for the clarification! I hope the RA messages can be gradually be brought up to par!
And even though the 2nd is very clear and helpful, VScode doesn’t see that. I’ve no clue if they parse most messages, except this one. Or does RA need to give meta-data and hasn’t gotten round to providing it in this case? Rhetorical question, just hoping this will be fixed – especially as it’s from Rustlings, i.e. beginners face this!
And even though the 2nd is very clear and helpful, VScode doesn’t see that. I’ve no clue if they parse most messages, except this one. Or does RA need to give meta-data and hasn’t gotten round to providing it in this case? Rhetorical question, just hoping this will be fixed – especially as it’s from Rustlings, i.e. beginners face this!
It's probably spread across places in the code, i.e. parts of the error are shown in different places.
The main issue is with rendering the nice error diagnostics from rustc in VSCode, which is quite difficult as VSCode's user facing error machinery is pretty weak.
As for r-a's error here, we should report expected type, found {`` like rustc does instead of just expected type. But as Chayim said, our parse error infra is pretty weak overall.
Uh oh!
There was an error while loading. Please reload this page.
rust-analyzer version: 0.4.2470-standalone
rustc version: 1.87.0 (17067e9ac 2025-05-09)
editor or extension: VSCode 1.100.2
I guess this problem is partly between RA and compiler and partly between RA and VSCode. I had reported it on irlo compiler, but they point me to you.
Rustlings functions4.rs made me notice several things.
This (both for return spec
-
or->
) gives an unrusty, very terse error message with no suggestion:Removing the arrow dramatically improves the message:
I see that one is syntax and the other logic, but from user’s perspective it’s pretty much the same error. In both cases VScode doesn’t suggest the obvious quick fix.
The text was updated successfully, but these errors were encountered: