Doing `fuzztest::InRegexp(R"(a)|(b)")` gives the error ``` Failed precondition (re != nullptr): Invalid RE2 regular expression. ``` Is that by design because I am able to do `OneOf(InRegexp(R"(a)"), InRegexp(R"(b)"))` without any errors
Doing
fuzztest::InRegexp(R"(a)|(b)")gives the errorIs that by design because I am able to do
OneOf(InRegexp(R"(a)"), InRegexp(R"(b)"))without any errors