xref: /third_party/rust/crates/minimal-lexical/fuzz/fuzz_targets/parse-float-f64.rs
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/rust/crates/minimal-lexical/fuzz/fuzz_targets/
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

Indexes created Thu Nov 07 10:32:03 CST 2024