mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
9 lines
142 B
Rust
9 lines
142 B
Rust
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
use typst_syntax::parse;
|
|
|
|
fuzz_target!(|text: &str| {
|
|
std::hint::black_box(parse(text));
|
|
});
|