1 2 3 4 5 6 7 8 9 10 11
use super::*; #[test] fn parse_unclosed_group() { parse_regex(r"(123").unwrap_err(); } #[test] fn alt_oom() { parse_regex(r"(%%|[^%])+").unwrap(); }