diff --git a/crates/misc/component-fuzz-util/src/lib.rs b/crates/misc/component-fuzz-util/src/lib.rs index da4e2de788..8c38134425 100644 --- a/crates/misc/component-fuzz-util/src/lib.rs +++ b/crates/misc/component-fuzz-util/src/lib.rs @@ -123,8 +123,9 @@ pub enum Type { Record(VecInRange), // Tuples can only have up to 16 type parameters in wasmtime right now for - // the static API. - Tuple(VecInRange), + // the static API, but the standard library only supports `Debug` up to 11 + // elements, so compromise at an even 10. + Tuple(VecInRange), // Like records, allow a good number of variants, but variants require at // least one case.