Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use unique ticket number for 'array shapes NYI'
  • Loading branch information
usev6 committed May 6, 2015
1 parent 7e8dc19 commit 62f8f60
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions S02-types/array-shapes.t
Expand Up @@ -11,7 +11,7 @@ plan 25;
is(+@arr, 43, 'my @arr[*] autoextends like my @arr');
}

#?rakudo skip 'array shapes NYI RT #124503'
#?rakudo skip 'array shapes NYI RT #124502'
{
{
my @arr[7] = <a b c d e f g>;
Expand All @@ -24,7 +24,7 @@ plan 25;
'accessing past num items in my @arr[num] dies';
}

#?rakudo skip 'array shapes NYI RT #124504'
#?rakudo skip 'array shapes NYI RT #124502'
{
{
lives_ok { my @arr\ [7]},
Expand Down Expand Up @@ -59,7 +59,7 @@ plan 25;
'type constraints on my Type @arr works (2)';
}

#?rakudo skip 'array shapes NYI RT #124505'
#?rakudo skip 'array shapes NYI RT #124502'
{
my @arr[5] of Int = <1 2 3 4 5>;
is(@arr, <1 2 3 4 5>, 'my @arr[num] of Type works');
Expand Down Expand Up @@ -89,7 +89,7 @@ plan 25;
'type constraints on my type @arr works (2)';
}

#?rakudo skip 'array shapes NYI RT #124507'
#?rakudo skip 'array shapes NYI RT #124502'
{
my int @arr[5] = <1 2 3 4 5>;
is(@arr, <1 2 3 4 5>, 'my Type @arr[num] works');
Expand Down

0 comments on commit 62f8f60

Please sign in to comment.