[The following code](https://play.rust-lang.org/?gist=4c268d5fa36a4c90d596a2c571d6ce91&version=nightly&mode=debug&edition=2015): ``` use std::collections::HashMap; fn main() { let x = HashMap::new(); x.insert("a", 3); println!("{:?}", x.get("a")); } ``` Produces ``` error[E0596]: cannot borrow immutable local variable `x` as mutable --> src/main.rs:5:5 | 4 | let x = HashMap::new(); | - consider changing this to `mut x` 5 | x.insert("a", 3); | ^ cannot borrow mutably ``` The suggestion for line 4 is a label, not a suggestion.