8 lines
109 B
Go
8 lines
109 B
Go
package tests
|
|
|
|
//easyjson:json
|
|
type NocopyStruct struct {
|
|
A string `json:"a"`
|
|
B string `json:"b,nocopy"`
|
|
}
|