1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/x/json2/json_module_compatibility_test/json_decode_with_sumtype_todo_test.vv
2022-12-05 16:58:44 +02:00

22 lines
441 B
V

import x.json2 as json
type Test = []bool | []int | []string | string
struct Some {
t Test
}
fn test_json_decode_with_sumtype() {
v1 := json.decode[Some]('{"t": ["string", "string2"]}')!
println(v1)
assert v1.t == Test(['string', 'string2'])
v2 := json.decode[Some]('{"t": [11, 22]}')!
println(v2)
assert v2.t == Test([11, 22])
v3 := json.decode[Some]('{"t": [true, false]}')!
println(v3)
assert v3.t == Test([true, false])
}