Ooops, fix broken escape sequence.

[SVN r42745]
This commit is contained in:
John Maddock
2008-01-14 09:46:12 +00:00
parent 299086b99c
commit b1af72fd23

View File

@ -131,7 +131,7 @@ void test_conditionals()
TEST_INVALID_REGEX("(?<!*|^)", perl);
TEST_INVALID_REGEX("(?<!*|A)", perl);
TEST_INVALID_REGEX("(?<=?|A)", perl);
TEST_INVALID_REGEX("(?<=*|\B)", perl);
TEST_INVALID_REGEX("(?<=*|\\B)", perl);
}
void test_options()