1
0
mirror of https://github.com/json-iterator/go.git synced 2025-02-10 19:41:53 +02:00
2017-07-18 09:01:43 +08:00

17 lines
298 B
Go

package test
type typeForTest float64
var inputs = []string{
"+1", // invalid
"-a", // invalid
"-\x00", // invalid, zero byte
"0.1", // valid
"0..1", // invalid, more dot
"1e+1", // valid
"1+1", // invalid
"1E1", // valid, e or E
"1ee1", // invalid
"100a", // invalid
}