Michał Błotniak

Results 1 issues of Michał Błotniak

Consider following code: ``` type Outer struct { Inner A int64 `json:"a"` B interface{} `json:"b"` } type Inner struct { A map[string]float64 `json:"innerA"` B string `json:"innerB"` } ``` Serializing Outer{}...

bug