mirror of
https://github.com/json-iterator/go.git
synced 2025-04-01 21:24:21 +02:00
13 lines
245 B
Go
13 lines
245 B
Go
package test
|
|
|
|
type typeForTest []interface{}
|
|
|
|
var inputs = []string{
|
|
`[]`, // valid
|
|
`[1]`, // valid
|
|
`[ 1, "hello"]`, // valid
|
|
`[abc]`, // invalid
|
|
`[`, // invalid
|
|
`[[]`, // invalid
|
|
}
|