1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/for_in_mut_key_of_map.vv

7 lines
82 B
V

fn main() {
mut m := {'foo': 1, 'bar': 2}
for mut k, _ in m {
println(k)
}
}