summaryrefslogtreecommitdiff
path: root/testdata/testinput1
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/testinput1')
-rw-r--r--testdata/testinput125
1 files changed, 21 insertions, 4 deletions
diff --git a/testdata/testinput1 b/testdata/testinput1
index 806a0b1..a30b51e 100644
--- a/testdata/testinput1
+++ b/testdata/testinput1
@@ -1441,10 +1441,6 @@
ABCabc
abcABC
-/(main(O)?)+/
- mainmain
- mainOmain
-
/ab{3cd/
ab{3cd
@@ -1918,4 +1914,25 @@
acb
a\nb
+/^(b+?|a){1,2}?c/
+ bac
+ bbac
+ bbbac
+ bbbbac
+ bbbbbac
+
+/^(b+|a){1,2}?c/
+ bac
+ bbac
+ bbbac
+ bbbbac
+ bbbbbac
+
+/(?!\A)x/m
+ x\nb\n
+ a\bx\n
+
+/\x0{ab}/
+ \0{ab}
+
/ End of testinput1 /