You may have tried to fuzz a function that takes a struct as a parameter. The direct way of doing this does not work, because the Go fuzzing framework is limited to basic types like int, float64, bool.
go-fuzz-all allows you to fuzz functions with non-basic type arguments.
No comments yet.