blob: 76a8b08d009352099bdde7a8612df32984ae6d24 (
plain)
1
2
3
4
5
6
7
8
9
|
#![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)
}
});
|