v/vlib/v/tests/calling_module_functions_wi...

11 lines
271 B
V

import json
fn test_calling_functions_with_map_initializations_containing_arrays() {
result := json.encode({
// Note: []string{} should NOT be treated as []json.string{}
'users': []string{}
'groups': []string{}
})
assert result == '{"users":[],"groups":[]}'
}