The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
  regcomp.c	These tests have been moved to t/re/reg_mesg.t
		except for those that explicitly test line numbers.

__END__
use warnings 'regexp';
$r=qr/(??{ q"\\b+" })/;
"a" =~ /a$r/; # warning should come from this line
EXPECT
\b+ matches null string many times in regex; marked by <-- HERE in m/\b+ <-- HERE / at - line 3.