File size: 122 Bytes
0220cd3
 
 
 
 
 
 
1
2
3
4
5
6
7
8
use bolero::check;

fn main() {
    check!().for_each(|data: &[u8]| {
        mailparse::parse_mail(data).ok();
    });
}