v/vlib/v/checker/tests/mut_map_get_value_address_e...

6 lines
73 B
V

fn main() {
mut m := {'key' : 3}
a := &m['key']
println(a)
}