Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
test arglist interpolation of ranges, RT #113804
  • Loading branch information
moritz committed Jun 27, 2012
1 parent 824e965 commit 5d689e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion S06-signature/slurpy-and-interpolation.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 6;
plan 7;

# L<S03/Argument List Interpolating/"interpolate">

Expand Down Expand Up @@ -38,4 +38,7 @@ dies_ok {
is eval(f2(:a(4))).<a>, 4, '... with a sane return value';
}

# RT #113804
is join('|', |(1..5)), '1|2|3|4|5', 'can interpolate ranges into arglists';

# vim: ft=perl6

0 comments on commit 5d689e8

Please sign in to comment.