kinda works except not

This commit is contained in:
nora 2022-03-15 21:24:03 +01:00
parent 869329c430
commit d54bb57e14
9 changed files with 302 additions and 6 deletions

8
fuzz/fuzz_targets/ast.rs Normal file
View 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
});