v/vlib/v/checker/tests/map_ops.vv

7 lines
80 B
V

fn test_map() {
mut m := map[int]string
_ = m[`!`]
m['hi'] = 8
m[&m] += 4
}