diff --git a/crates/fuzzing/src/generators.rs b/crates/fuzzing/src/generators.rs index c3813a1b6e..f982b42844 100644 --- a/crates/fuzzing/src/generators.rs +++ b/crates/fuzzing/src/generators.rs @@ -44,6 +44,10 @@ impl Arbitrary for WasmOptTtf { let wasm = module.write(); Ok(WasmOptTtf { wasm }) } + + fn size_hint(depth: usize) -> (usize, Option) { + as Arbitrary>::size_hint(depth) + } } /// A description of configuration options that we should do differential