Skip to content

Commit 1578779

Browse files
authored
Allow dead code in component_api fuzz target (#11575) (#11844)
Fuzz-generation might generate dead types, so this avoids build errors where types aren't used. Aims to fix [this build log][log] [log]: https://github.com/bytecodealliance/wasmtime/actions/runs/17335065094/job/49219595286?pr=11570
1 parent be3cc21 commit 1578779

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

fuzz/fuzz_targets/component_api.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![no_main]
2+
#![allow(dead_code, reason = "fuzz-generation sometimes generates unused types")]
23

34
use libfuzzer_sys::{arbitrary, fuzz_target};
45
use wasmtime_fuzzing::oracles;

0 commit comments

Comments
 (0)