summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/re/pat_rt_report.t14
1 files changed, 13 insertions, 1 deletions
diff --git a/t/re/pat_rt_report.t b/t/re/pat_rt_report.t
index 92f4acc8a4..efbbe8f2fd 100644
--- a/t/re/pat_rt_report.t
+++ b/t/re/pat_rt_report.t
@@ -21,7 +21,7 @@ BEGIN {
}
-plan tests => 2510; # Update this when adding/deleting tests.
+plan tests => 2511; # Update this when adding/deleting tests.
run_tests() unless caller;
@@ -1178,6 +1178,18 @@ sub run_tests {
ok($s =~ $pat, $pat);
}
}
+
+ {
+ local $TODO = "[perl #38133]";
+
+ "A" =~ /(((?:A))?)+/;
+ my $first = $2;
+
+ "A" =~ /(((A))?)+/;
+ my $second = $2;
+
+ iseq($first, $second);
+ }
} # End of sub run_tests
1;