mirror of
https://github.com/Noratrieb/fuzz-rustc-ast.git
synced 2026-01-14 19:25:01 +01:00
kinda works except not
This commit is contained in:
parent
869329c430
commit
d54bb57e14
9 changed files with 302 additions and 6 deletions
8
fuzz/fuzz_targets/ast.rs
Normal file
8
fuzz/fuzz_targets/ast.rs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#![no_main]
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
|
||||
use fuzz_rustc_ast::RustCode;
|
||||
|
||||
fuzz_target!(|_data: RustCode| {
|
||||
// fuzzed code goes here
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue