mirror of
https://github.com/chronotope/chrono.git
synced 2025-09-29 22:11:59 +00:00
8 lines
173 B
Rust
8 lines
173 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
fuzz_target!(|data: (String, String)| {
|
|
use chrono::prelude::*;
|
|
let _ = DateTime::parse_from_str(&data.0, &data.1);
|
|
});
|