v2 / vlib / v / tests / structs / anon_struct_default_value_test.v
16 lines · 13 sloc · 206 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1import json
2
3struct SomeParams {
4 name string
5 sub_struct struct {
6 id string
7 } @[omitempty]
8}
9
10fn some_fn(p SomeParams) string {
11 return json.encode(p)
12}
13
14fn test_main() {
15 some_fn(SomeParams{})
16}
17