v2 / vlib / v / tests / aliases / alias_map_test.v
9 lines · 7 sloc · 139 bytes · 34c67878b94f005e76d21508f4f1e6653333dae5
Raw
1module main
2
3type Dict = map[string]string
4
5fn test_main() {
6 mut x := Dict{}
7 x['foo'] = 'bar'
8 assert '${x}' == "Dict({'foo': 'bar'})"
9}
10