mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 22:54:58 +00:00
Rename ra_syntax -> syntax
This commit is contained in:
parent
3d6889cba7
commit
a1c187eef3
958 changed files with 353 additions and 363 deletions
11
crates/syntax/fuzz/fuzz_targets/reparse.rs
Normal file
11
crates/syntax/fuzz/fuzz_targets/reparse.rs
Normal file
|
@ -0,0 +1,11 @@
|
|||
//! 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();
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue