Files
wasmtime/fuzz/fuzz_targets/peepmatic_compile.rs

9 lines
139 B
Rust

#![no_main]
use libfuzzer_sys::fuzz_target;
use peepmatic_fuzzing::compile::compile;
fuzz_target!(|data: &[u8]| {
compile(data);
});