Skip to content

Commit 202d250

Browse files
committed
removed inappropriate Rakudo-specific test
1 parent 63da604 commit 202d250

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

S02-types/array.t

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use v6;
22

33
use Test;
44

5-
plan 93;
5+
plan 91;
66

77
#L<S02/Mutable types/Array>
88

@@ -335,17 +335,6 @@ my @array2 = ("test", 1, Mu);
335335
ok Array(1,2,3) eqv [1,2,3], 'Array(1,2,3) makes correct array';
336336
}
337337

338-
# RT 73184
339-
#?niecza skip "Seems like this is an inappropriate Rakudo-specific test"
340-
#?pugs skip 'Stack space overflow'
341-
{
342-
my @a = 0..*;
343-
try { @a[ Inf ] = 3 };
344-
ok "$!" ~~ /'type cannot unbox to a native integer'/, 'cannot use Inf index to assign element in infinite array';
345-
try { @a[ Inf ].say };
346-
ok "$!" ~~ /'type cannot unbox to a native integer'/, 'cannot use Inf index to access element in infinite array';
347-
}
348-
349338
done;
350339

351340
# vim: ft=perl6

0 commit comments

Comments
 (0)