v2 / vlib / json / tests / json_encode_default_option_none_test.v
12 lines · 9 sloc · 137 bytes · 91a3844ad5b5f0c44442bde9356548d30a9954a7
Raw
1// vtest vflags: -w
2module main
3
4import json
5
6struct Test {
7 id ?string = none
8}
9
10fn test_main() {
11 assert json.encode(Test{}) == '{}'
12}
13