]> git.proxmox.com Git - cargo.git/blobdiff - vendor/regex/tests/unicode.rs
New upstream version 0.52.0
[cargo.git] / vendor / regex / tests / unicode.rs
index 52522f41c6b46c1b507a1b4cf016283adb1016d7..9f1cd0c01fc3f067a33bfee2e435a2cbee92b53f 100644 (file)
@@ -74,6 +74,9 @@ mat!(
     Some((0, 3))
 );
 mat!(uni_class_gencat_format, r"\p{Format}", "\u{E007F}", Some((0, 4)));
+// See: https://github.com/rust-lang/regex/issues/719
+mat!(uni_class_gencat_format_abbrev1, r"\p{cf}", "\u{E007F}", Some((0, 4)));
+mat!(uni_class_gencat_format_abbrev2, r"\p{gc=cf}", "\u{E007F}", Some((0, 4)));
 mat!(
     uni_class_gencat_initial_punctuation,
     r"\p{Initial_Punctuation}",