rust-analyzer/crates/ra_syntax/fuzz/fuzz_targets/parser.rs
2019-03-22 08:04:48 +09:00

9 lines
196 B
Rust

#![no_main]
use libfuzzer_sys::fuzz_target;
use ra_syntax::fuzz::check_parser;
fuzz_target!(|data: &[u8]| {
if let Ok(text) = std::str::from_utf8(data) {
check_parser(text)
}
});