vxx2 / vlib / v / checker / tests / mut_map_get_value_address_err.out
7 lines · 7 sloc · 247 bytes · 3ad384e92a42021f316498e8d04c3c0779f18e59
Raw
1vlib/v/checker/tests/mut_map_get_value_address_err.vv:5:9: error: cannot take the address of map values outside `unsafe`
2 3 | 'key': 3
3 4 | }
4 5 | a := &m['key']
5 | ~~~~~~~
6 6 | println(a)
7 7 | }
8