1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

cgen: fix json encode struct with optional field (#16866)

This commit is contained in:
yuyi
2023-01-04 18:41:07 +08:00
committed by GitHub
parent 0a6fc6d280
commit b8571c964d
3 changed files with 42 additions and 3 deletions

View File

@ -0,0 +1,20 @@
import json
struct Foo {
name string
num ?int
}
fn test_json_encode_struct_with_optional_field() {
f1 := Foo{
name: 'hello'
}
ret1 := json.encode(f1)
println(ret1)
assert ret1 == '{"name":"hello","num":null}'
f2 := Foo{'hello', 22}
ret2 := json.encode(f2)
println(ret2)
assert ret2 == '{"name":"hello","num":22}'
}