External Publication
Visit Post

Just `mut` alongside `let mut`

Rust Internals [Unofficial] March 16, 2026
Source

Without a leading let it will be harder to detect shadowing in your code:

let foo = "foo";

...

mut foo = "bar";

Discussion in the ATmosphere

Loading comments...