mirror of
https://github.com/netbirdio/easyjson.git
synced 2026-05-22 18:44:42 -07:00
15 lines
243 B
Go
15 lines
243 B
Go
package tests
|
|
|
|
//easyjson:json
|
|
type NoIntern struct {
|
|
Field string `json:"field"`
|
|
}
|
|
|
|
//easyjson:json
|
|
type Intern struct {
|
|
Field string `json:"field,intern"`
|
|
}
|
|
|
|
var intern = Intern{Field: "interned"}
|
|
var internString = `{"field":"interned"}`
|