mirror of
https://github.com/json-iterator/go.git
synced 2024-11-27 08:30:57 +02:00
15 lines
250 B
Go
15 lines
250 B
Go
package test
|
|
|
|
type typeForTest string
|
|
|
|
var inputs = []string{
|
|
`""`, // valid
|
|
`"hello"`, // valid
|
|
`"`, // invalid
|
|
`"\"`, // invalid
|
|
`"\x00"`, // invalid
|
|
"\"\x00\"", // invalid
|
|
"\"\t\"", // invalid
|
|
`"\t"`, // valid
|
|
}
|