dvyukov / go-fuzz

Randomized testing for Go
Apache License 2.0
4.79k stars 279 forks source link

Encountering Error When Using go-fuzz-build #351

Closed jlguochn closed 10 months ago

jlguochn commented 10 months ago

When I use go-fuzz-build ., I encounter the error 'go/pkg/mod/github.com/iden3/go-iden3-crypto@v0.0.15/ffg/element_fuzz.go:103:7: b declared and not used typechecking of . failed'.

josharian commented 10 months ago

Workaround: add _ = b after it.

jlguochn commented 10 months ago

Workaround: add _ = b after it.

thanks, it's work.