Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove obsolete TODO markers in S09-typed-arrays/arrays.t
Thanks to FROGGS++ for pointing this out!
  • Loading branch information
niner committed Aug 28, 2015
1 parent fb33c96 commit f5c11d0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions S09-typed-arrays/arrays.t
Expand Up @@ -88,7 +88,6 @@ plan 77;
lives-ok { @x.push: [8, 9] }, 'pushing works';
dies-ok { @x.push: 8 }, 'type constraint is enforced';
lives-ok { @x[0].push: 3 }, 'pushing to the inner array is OK';
#?rakudo todo "nested typechecks are borked"
dies-ok { @x[0].push: 'foo' }, 'inner array enforces the type constraint';
} #6

Expand Down Expand Up @@ -159,7 +158,6 @@ plan 77;
{
throws-like 'my Int @a = "ab", "cd"', X::TypeCheck::Assignment,
'typed arrays do check type during list assignment';
#?rakudo todo 'RT#124079 RT#122440 laziness defers typecheck'
throws-like 'my Int @a = "ab", "cd"; 42.Str;', X::TypeCheck::Assignment,
'typed arrays do check type during list assignment in sink';
}
Expand Down

0 comments on commit f5c11d0

Please sign in to comment.