rust-fuzz/libfuzzer

Implementation of `fuzz_target!` is overly restrictive

cole-miller opened this issue · 0 comments

The fuzz_target! macro doesn't accept closures that use a nontrivial pattern for the single argument, like |mut data| { ... }:

macro_rules! fuzz_target {