v/vlib/x/json2/decoder2/tests/decode_array_test.v
2024-10-18 09:12:09 +03:00

6 lines
118 B
V

import x.json2.decoder2 as json
fn test_array_of_strings() {
assert json.decode[[]int]('[1, 2, 3]')! == [1, 2, 3]
}