1 regcomp.c These tests have been moved to t/re/reg_mesg.t
2 except for those that explicitly test line numbers
3 and those that don't have a <-- HERE in them.
7 $r=qr/(??{ q"\\b+" })/;
8 "a" =~ /a$r/; # warning should come from this line
10 \b+ matches null string many times in regex; marked by <-- HERE in m/\b+ <-- HERE / at - line 3.
13 use warnings 'digit' ;
14 my $a = qr/\o{1238456}\x{100}/;
15 my $a = qr/[\o{6548321}]\x{100}/;
17 my $a = qr/\o{1238456}\x{100}/;
18 my $a = qr/[\o{6548321}]\x{100}/;
20 Non-octal character '8'. Resolved as "\o{123}" at - line 3.
21 Non-octal character '8'. Resolved as "\o{654}" at - line 4.
31 "\c," is more clearly written simply as "l" at - line 3.
32 "\c," is more clearly written simply as "l" at - line 4.