Skip to content

Commit

Permalink
Add test for RT #77570
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Feb 17, 2015
1 parent eaa2708 commit 8314042
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion S05-capture/dot.t
Expand Up @@ -16,7 +16,7 @@ Broken:
## L<S05/Extensible metasyntax (C<< <...> >>)/A leading C<.> causes>
=end pod

plan 61;
plan 62;

my regex dotdot { (.)(.) };

Expand Down Expand Up @@ -115,5 +115,9 @@ is(~$/, "john", 'Metaname match is john');
ok(~$/ ne "jean", "Metaname match isn't jean");
is(~$/<name>, "john", 'Metaname is john');

# RT #77570
{
eval_lives_ok('$' ~ 1 x 1000000, 'Can refer to very high numbered capture variable without exploding');
}

# vim: ft=perl6

0 comments on commit 8314042

Please sign in to comment.