p4raw-id: //depot/perl@13864
$| = 1;
-print "1..792\n";
+print "1..794\n";
BEGIN {
chdir 't' if -d 't';
$1 eq "\N{LATIN CAPITAL LETTER E}\N{COMBINING GRAVE ACCENT}" ?
"ok 792\n" : "not ok 792 # $1\n";
}
+
+{
+ print "#\\C and \\X\n";
+
+ print "!abc!" =~ /a\Cc/ ? "ok 793\n" : "not ok 793\n";
+ print "!abc!" =~ /a\Xc/ ? "ok 794\n" : "not ok 794\n";
+}
(A|B)*?(?(1)(CD)|(CD)) CD y $2-$3 -CD # [ID 20010803.016]
(A|B)*?(?(1)(CD)|(CD)) ABCD y $2-$3 CD-
'^(o)(?!.*\1)'i Oo n - -
-a.c !abc! y $& abc
-a\Cc !abc! y $& abc
-a\Xc !abc! y $& abc