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

map: add map['aa']+='str' test

This commit is contained in:
yuyi
2020-06-28 19:34:59 +08:00
committed by GitHub
parent 9814497b91
commit 05de780219

View File

@@ -283,3 +283,10 @@ fn test_map_in_directly() {
assert v == 1
}
}
fn test_plus_assign_string() {
mut m := {'one': ''}
m['one'] += '1'
assert m.len == 1
assert m['one'] == '1'
}