summaryrefslogtreecommitdiff
path: root/testdata/testinput11
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-03-07 17:35:52 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2010-03-07 17:35:52 +0000
commit49c56a265833ec84377194fb95cf09b6592edf18 (patch)
tree2129dee13e6c99c3dab14f47769ac1289fa33b01 /testdata/testinput11
parent6413b089ecc41c087743ea779015d9a1fc4bc9c6 (diff)
downloadpcre-49c56a265833ec84377194fb95cf09b6592edf18.tar.gz
Fix incorrect compile time error for certain types of recursive patterns.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@503 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'testdata/testinput11')
-rw-r--r--testdata/testinput1110
1 files changed, 10 insertions, 0 deletions
diff --git a/testdata/testinput11 b/testdata/testinput11
index d1054ef..3543bf7 100644
--- a/testdata/testinput11
+++ b/testdata/testinput11
@@ -379,4 +379,14 @@
a(b)c
a(b(c)d)e
+/(?P<L1>(?P<L2>0)(?P>L1)|(?P>L2))/
+ 0
+ 00
+ 0000
+
+/(?P<L1>(?P<L2>0)|(?P>L2)(?P>L1))/
+ 0
+ 00
+ 0000
+
/-- End of testinput11 --/