manticore icon indicating copy to clipboard operation
manticore copied to clipboard

Add support to for tuple variants with lifetimes in make_fuzz_safe! macro.

Open adsnaider opened this issue 4 years ago • 0 comments

Currently unsupported example

make_fuzz_safe! {
    pub enum MyTupleVariant<'a> {
        Foo(u32),
        Bar(&'a [u8]),
    }
}

adsnaider avatar Nov 15 '21 23:11 adsnaider