| 12345678910111213141516 |
- package test
- type typeForTest struct{}
- var inputs = []string{
- `{}`, // valid
- `{"hello":"world"}`, // valid
- `{hello:"world"}`, // invalid
- `{"hello:"world"}`, // invalid
- `{"hello","world"}`, // invalid
- `{"hello":{}`, // invalid
- `{"hello":{}}`, // valid
- `{"hello":{}}}`, // invalid
- `{"hello": { "hello": 1}}`, // valid
- `{abc}`, // invalid
- }
|