blob: 3d1b0894a1129f5f4d8eb488f939db1b2bcecbf4 [file] [edit]
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"`
}