mirror of
https://github.com/Noratrieb/fuzz-rustc-ast.git
synced 2026-01-14 19:25:01 +01:00
8 lines
142 B
Rust
8 lines
142 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
use fuzz_rustc_ast::RustCode;
|
|
|
|
fuzz_target!(|_data: RustCode| {
|
|
// fuzzed code goes here
|
|
});
|