Hacker News new | ask | show | jobs
by trealira 979 days ago
Yeah, and cargo check exists for that very reason. It does type checking without actually compiling the code. Rust-analyzer, the LSP server for Rust, runs `cargo check` whenever the file is saved, IIRC, and then shows you what the compiler said.
1 comments

Incremental type checking is still painfully slow on a large codebase.