Just `mut` alongside `let mut`
Rust Internals [Unofficial]
March 16, 2026
Without a leading let it will be harder to detect shadowing in your code:
let foo = "foo";
...
mut foo = "bar";
Without a leading let it will be harder to detect shadowing in your code:
let foo = "foo";
...
mut foo = "bar";
Discussion in the ATmosphere