mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-14 09:25:02 +01:00
7 lines
172 B
Rust
7 lines
172 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
fuzz_target!(|data: String| {
|
|
let lexer = script_lang::Lexer::lex(&data);
|
|
let _tokens = lexer.collect::<Vec<_>>();
|
|
});
|