mirror of
https://github.com/json-iterator/go.git
synced 2025-04-20 11:28:49 +02:00
16 lines
212 B
Go
16 lines
212 B
Go
// +build go1.14
|
|
|
|
package test
|
|
|
|
func init() {
|
|
unmarshalCases = append(unmarshalCases, unmarshalCase{
|
|
obj: func() interface{} {
|
|
var i int
|
|
pi := &i
|
|
ppi := &pi
|
|
return &ppi
|
|
},
|
|
input: "null",
|
|
})
|
|
}
|