summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-05-31 05:05:42 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-05-31 05:05:42 +0000
commitc2a735686052c4e782e029afd2945461349272c6 (patch)
tree03d1a8afd63a583a3ab2457c8c43da04794c8d58 /t
parentd64830355c411305652aeae96623a3ca530d6d38 (diff)
downloadperl-c2a735686052c4e782e029afd2945461349272c6.tar.gz
fix buggy multiline matching of C<"a\nxb\n" =~ /(?!\A)x/m>
(from Ilya Zakharevich) p4raw-id: //depot/perl@6172
Diffstat (limited to 't')
-rw-r--r--t/op/re_tests1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/op/re_tests b/t/op/re_tests
index 189077c628..37e8ee33cd 100644
--- a/t/op/re_tests
+++ b/t/op/re_tests
@@ -751,3 +751,4 @@ tt+$ xxxtt y - -
'^\S\s+aa$'m \nx aa y - -
(^|a)b ab y - -
(?i) y - -
+'(?!\A)x'm a\nxb\n y - -