Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
json
/
tests
/
json_encode_default_option_none_test.v
12
lines
·
9
sloc
·
137 bytes
·
91a3844ad5b5f0c44442bde9356548d30a9954a7
Raw
1
// vtest vflags: -w
2
module
main
3
4
import
json
5
6
struct
Test {
7
id ?string =
none
8
}
9
10
fn
test_main() {
11
assert json.encode(Test{}) ==
'{}'
12
}
13