mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
11 lines
227 B
Rust
11 lines
227 B
Rust
//! FIXME: write short doc here
|
|
|
|
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
use syntax::fuzz::CheckReparse;
|
|
|
|
fuzz_target!(|data: &[u8]| {
|
|
if let Some(check) = CheckReparse::from_data(data) {
|
|
check.run();
|
|
}
|
|
});
|