v2 / vlib / v / tests / aliases / alias_map_clone_test.v
13 lines · 11 sloc · 151 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1type Fields = map[string]string
2
3fn test_alias_map_clone() {
4 f := Fields({
5 's': 'a'
6 })
7
8 s := f.clone()
9 println(s)
10 assert s == {
11 's': 'a'
12 }
13}
14