aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/fuzz/fuzz_targets/parser.rs
blob: 386768343bdd2e228bd0756de5f720319d7eecfc (plain)
1
2
3
4
5
6
7
8
9
10
11
//! FIXME: write short doc here

#![no_main]
use libfuzzer_sys::fuzz_target;
use syntax::fuzz::check_parser;

fuzz_target!(|data: &[u8]| {
    if let Ok(text) = std::str::from_utf8(data) {
        check_parser(text)
    }
});