Canonicalize the pattern in annotations

This commit is contained in:
Joshua Warner 2025-01-09 21:57:36 -08:00
parent 2331aa1d77
commit 408379f8d3
No known key found for this signature in database
GPG key ID: 89AD497003F93FDD
8 changed files with 86 additions and 3 deletions

View file

@ -11,7 +11,7 @@ fuzz_target!(|data: &[u8]| {
let ast = input.parse_in(&arena);
if let Ok(ast) = ast {
if !ast.is_malformed() {
input.check_invariants(|_| (), true, None);
input.check_invariants(|_| (), true, Some(false));
}
}
}