miller/go/regtest/input/flatten-input-1.json
John Kerl b06c449384
Make regression tests invokable from 'go test' (#491)
* incorporate reg-test into "go test" framework
* reg-test -> regtest everywhere
* update .github/workflows/go.yml
2021-04-12 23:00:53 -04:00

42 lines
333 B
JSON

{
"a": 1,
"b": {
"c": 2,
"d": 3
}
}
{
"a": 1,
"b": {
"c": {
"x": 2,
"y": 3
},
"d": {
"x": 4,
"y": 5
}
}
}
{
"a": 1,
"b": {
"c": [
2,
3
]
}
}
{
"a": 1,
"b": [
{
"x": 2,
"y": 3
},
{
"x": 4,
"y": 5
}
]
}