mirror of
https://github.com/casey/just.git
synced 2025-07-07 17:45:00 +00:00
6 lines
115 B
Rust
6 lines
115 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
fuzz_target!(|src: &str| {
|
|
let _ = just::fuzzing::compile(src);
|
|
});
|