mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-11-01 12:24:29 +00:00
rename all things
This commit is contained in:
parent
ba0bfeee12
commit
b5021411a8
478 changed files with 219 additions and 204 deletions
9
crates/ra_syntax/fuzz/fuzz_targets/parser.rs
Normal file
9
crates/ra_syntax/fuzz/fuzz_targets/parser.rs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#![no_main]
|
||||
#[macro_use] extern crate libfuzzer_sys;
|
||||
extern crate ra_syntax;
|
||||
|
||||
fuzz_target!(|data: &[u8]| {
|
||||
if let Ok(text) = std::str::from_utf8(data) {
|
||||
ra_syntax::utils::check_fuzz_invariants(text)
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue