1
0
mirror of https://github.com/json-iterator/go.git synced 2025-04-20 11:28:49 +02:00
json-iterator/value_tests/ptr_114_test.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",
})
}