Commit | Line | Data |
---|---|---|
63fbd1cb | 1 | regcomp.c These tests have been moved to t/re/reg_mesg.t |
dd8ddecf | 2 | except for those that explicitly test line numbers. |
f9373011 | 3 | |
599cee73 | 4 | __END__ |
dd8ddecf FC |
5 | use warnings 'regexp'; |
6 | $r=qr/(??{ q"\\b+" })/; | |
7 | "a" =~ /a$r/; # warning should come from this line | |
8 | EXPECT | |
9 | \b+ matches null string many times in regex; marked by <-- HERE in m/\b+ <-- HERE / at - line 3. |