Default severity: error
The standard JSON and XML encoders cannot marshal channel or function values. The check recursively checks exported fields, while honoring ignored fields and custom marshaling methods.
Bad
json.Marshal(make(chan int))Good
json.Marshal(struct{ Name string }{Name: name})