Skip to content

Commit

Permalink
improve panic message
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbepop committed Dec 4, 2023
1 parent e1f0e11 commit 00a1294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ fn ty_to_val(ty: &ValueType) -> Value {
ValueType::I64 => Value::I64(1),
ValueType::F32 => Value::F32(1.0.into()),
ValueType::F64 => Value::F64(1.0.into()),
_ => panic!("execution fuzzing does not support reference types, yet"),
unsupported => panic!("execution fuzzing does not support reference types, yet but found: {unsupported:?}"),
}
}

0 comments on commit 00a1294

Please sign in to comment.