rust/crates/ra_syntax/fuzz/fuzz_targets/reparse.rs

12 lines
230 B
Rust
Raw Normal View History

//! FIXME: write short doc here
2019-03-21 12:06:48 -05:00
#![no_main]
use libfuzzer_sys::fuzz_target;
use ra_syntax::fuzz::CheckReparse;
fuzz_target!(|data: &[u8]| {
if let Some(check) = CheckReparse::from_data(data) {
check.run();
}
});