12 lines
227 B
Rust
Raw Normal View History

//! FIXME: write short doc here
2019-03-22 02:06:48 +09:00
#![no_main]
use libfuzzer_sys::fuzz_target;
2020-08-12 18:26:51 +02:00
use syntax::fuzz::CheckReparse;
2019-03-22 02:06:48 +09:00
fuzz_target!(|data: &[u8]| {
if let Some(check) = CheckReparse::from_data(data) {
check.run();
}
});