applied patch, tweaked doc, and regen regnodes.h
[p5sagit/p5-mst-13.2.git] / t / op / re_tests
index b506306..dd54a2a 100644 (file)
@@ -439,3 +439,8 @@ $(?<=^(a))  a       y       $1      a
 ((?>[^()]+)|\([^()]*\))+       ((abc(ade)ufh()()x      y       $&      abc(ade)ufh()()x
 (?<=x+)y       -       c       -       /(?<=x+)y/: variable length lookbehind not implemented
 a{37,17}       -       c       -       /a{37,17}/: Can't do {n,m} with n > m
+a\Z    a\nb\n  n       -       -
+b\Z    a\nb\n  y       -       -
+b\z    a\nb\n  n       -       -
+b\Z    a\nb    y       -       -
+b\z    a\nb    y       -       -