mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 17:28:09 +00:00
9 lines
221 B
Rust
9 lines
221 B
Rust
#![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)
|
|
}
|
|
});
|