1cbd624adSopenharmony_ci#![no_main] 2cbd624adSopenharmony_ci 3cbd624adSopenharmony_cimod parse; 4cbd624adSopenharmony_ci 5cbd624adSopenharmony_ci#[macro_use] 6cbd624adSopenharmony_ciextern crate libfuzzer_sys; 7cbd624adSopenharmony_ci 8cbd624adSopenharmony_cifuzz_target!(|data: &[u8]| { 9cbd624adSopenharmony_ci let _ = parse::parse_float::<f64>(data); 10cbd624adSopenharmony_ci}); 11