mirror of
https://github.com/imjasonh/nescript
synced 2026-07-11 02:02:58 +00:00
8 lines
108 B
Rust
8 lines
108 B
Rust
|
|
#![no_main]
|
||
|
|
|
||
|
|
use libfuzzer_sys::fuzz_target;
|
||
|
|
|
||
|
|
fuzz_target!(|data: &[u8]| {
|
||
|
|
// fuzzed code goes here
|
||
|
|
});
|