Files
easyjson/tests/unknown_fields.go

18 lines
288 B
Go

package tests
import "github.com/mailru/easyjson"
//easyjson:json
type StructWithUnknownsProxy struct {
easyjson.UnknownFieldsProxy
Field1 string
}
//easyjson:json
type StructWithUnknownsProxyWithOmitempty struct {
easyjson.UnknownFieldsProxy
Field1 string `json:",omitempty"`
}