...

Source file src/github.com/json-iterator/go/value_tests/bool_test.go

Documentation: github.com/json-iterator/go/value_tests

     1  package test
     2  
     3  func init() {
     4  	unmarshalCases = append(unmarshalCases, unmarshalCase{
     5  		ptr: (*struct {
     6  			Field bool `json:"field"`
     7  		})(nil),
     8  		input: `{"field": null}`,
     9  	})
    10  }
    11  

View as plain text