1
0
mirror of https://github.com/json-iterator/go.git synced 2025-04-04 21:34:16 +02:00

15 lines
250 B
Go
Raw Normal View History

package test
type typeForTest string
var inputs = []string{
2017-07-18 09:45:25 +08:00
`""`, // valid
`"hello"`, // valid
`"`, // invalid
`"\"`, // invalid
`"\x00"`, // invalid
"\"\x00\"", // invalid
2017-07-18 09:45:25 +08:00
"\"\t\"", // invalid
`"\t"`, // valid
}