1 2 3 4 5 6 7 8 9
#![allow(clippy::manual_assert)] fn main() { afl::fuzz!(|n: u8| { if n == 100 && !cfg!(fuzzing) { panic!("Crash!"); } }); }