summaryrefslogtreecommitdiff
path: root/t/foo
diff options
context:
space:
mode:
Diffstat (limited to 't/foo')
-rwxr-xr-xt/foo8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/foo b/t/foo
new file mode 100755
index 0000000000..9070e7874c
--- /dev/null
+++ b/t/foo
@@ -0,0 +1,8 @@
+#!./perl
+
+$_ = 'aaabbbccc';
+if (/(a+b+c+)/ && $1 eq 'aaabbbccc') {
+ print "ok 14\n";
+} else {
+ print "not ok 14\n";
+}