File size: 215 Bytes
0220cd3
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
use bolero::check;

fn main() {
    check!().for_each(|data: &[u8]| match std::str::from_utf8(data) {
        Ok(input) => {
            mailparse::dateparse(input).ok();
        }
        Err(_err) => {}
    });
}