mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
322 B
Rust
18 lines
322 B
Rust
use std::collections::HashMap;
|
|
struct X(usize);
|
|
struct Y {
|
|
v: u32
|
|
}
|
|
|
|
fn main() {
|
|
let mut buzz = HashMap::new();
|
|
buzz.insert("a", Y { v: 0 });
|
|
|
|
for mut t in buzz.values() {
|
|
//~^ HELP
|
|
//~| SUGGESTION values_mut()
|
|
t.v += 1;
|
|
//~^ ERROR cannot assign
|
|
}
|
|
}
|