1 package tests 2 3 //easyjson:skip 4 type TypeSkipped struct { 5 Value string 6 } 7 8 type TypeNotSkipped struct { 9 Value string 10 } 11 12 var ( 13 myTypeNotSkippedValue = TypeDeclared{Value: "TypeNotSkipped"} 14 myTypeNotSkippedString = `{"Value":"TypeNotSkipped"}` 15 ) 16