Files
easyjson/tests/reference_to_pointer.go
T
2019-02-20 21:52:23 +00:00

11 lines
167 B
Go

package tests
type Struct1 struct {
}
//easyjson:json
type Struct2 struct {
From *Struct1 `json:"from,omitempty"`
Through *Struct1 `json:"through,omitempty"`
}