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
This appears to work for basically any crate, I can reproduce it with a new empty crate by adding a trait to main.rs and implementing it incorrectly
pubtraitTrait{fnmethod();}// This impl should produce an errorimplTraitfor(){}fnmain(){}
If clippy is not installed RA appears to indicate there are no errors. Some basic syntax errors still show up. Installing clippy with rustup component add clippy or setting rust-analyzer.checkOnSave.command back to "check" both resolve the issue.
I think RA should show some kind of error when the command isn't found. It's possible there's an error in a log somewhere but I wasn't able to track it down quickly if so.