Navigation Menu

Skip to content

Commit

Permalink
Fixe test as reported in RT #63346
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Feb 20, 2009
1 parent 529396a commit 6c7a7a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/00-parrot/05-var-array.t
Expand Up @@ -10,13 +10,13 @@ my @a = (1, 2, 3);

say 'ok ' ~ @a[0];
say 'ok ' ~ @a[1];
say 'ok ' ~ @a[-1];
say 'ok ' ~ @a[*-1];
say 'ok 4' if 3 eq @a.elems;

my @b = <5 6>;

say 'ok ' ~ @b[0];
say 'ok ' ~ @b[-1];
say 'ok ' ~ @b[*-1];
say 'ok 7' if 2 eq @b.elems;

my @c = <ok 8>; say ~@c;
Expand Down

0 comments on commit 6c7a7a9

Please sign in to comment.