mirror of
https://github.com/json-iterator/go.git
synced 2025-04-20 11:28:49 +02:00
11 lines
176 B
Go
11 lines
176 B
Go
|
package test
|
||
|
|
||
|
func init() {
|
||
|
unmarshalCases = append(unmarshalCases, unmarshalCase{
|
||
|
ptr: (*struct {
|
||
|
Field bool `json:"field"`
|
||
|
})(nil),
|
||
|
input: `{"field": null}`,
|
||
|
})
|
||
|
}
|