blob: 43c51d591267b62078cb0c6b7144f8533e15e74b [file] [log] [blame]
// +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",
})
}