mirror of
https://github.com/logos-blockchain/lez-fuzzing.git
synced 2026-06-07 11:39:30 +00:00
10 lines
258 B
Rust
10 lines
258 B
Rust
#![cfg_attr(feature = "fuzzer-libfuzzer", no_main)]
|
|
// use fuzz_props::arbitrary_types::*;
|
|
// use fuzz_props::generators::*;
|
|
// use fuzz_props::invariants::*;
|
|
|
|
fuzz_props::fuzz_entry!(|data: &[u8]| {
|
|
// TODO: implement harness body
|
|
let _ = data;
|
|
});
|