mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-14 17:35:03 +01:00
7 lines
145 B
Rust
7 lines
145 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
fuzz_target!(|data: String| {
|
|
let lexer = dilaria::Lexer::new(&data);
|
|
for _ in lexer {}
|
|
});
|