0
0
mirror of https://github.com/Pumpkin-MC/Pumpkin synced 2025-01-30 21:51:36 +00:00
2024-10-14 12:01:35 +02:00

8 lines
108 B
Rust

#![no_main]
use libfuzzer_sys::fuzz_target;
fuzz_target!(|data: &[u8]| {
// fuzzed code goes here
});