Anton
Results
1
issues of
Anton
**Case 1** ```go type Structure struct { Id int `json:"id"` *Structure } func TestIssueWithInlineStruct(t *testing.T) { obj := Structure{ Id: 99, } b, err := json.Marshal(obj) assertErr(t, err) assertEq(t, "key...