1
0
mirror of https://github.com/json-iterator/go.git synced 2025-04-01 21:24:21 +02:00
2017-07-18 09:45:25 +08:00

13 lines
245 B
Go

package test
type typeForTest []interface{}
var inputs = []string{
`[]`, // valid
`[1]`, // valid
`[ 1, "hello"]`, // valid
`[abc]`, // invalid
`[`, // invalid
`[[]`, // invalid
}