This is an automatically generated mail to inform you that tests are now available in t/spec/S02-builtin_data_types/array.t
commit 84491e4d2d0e0edae629fdcaee3da248f047eb79 Author: radus <ra...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Sun Aug 8 09:11:30 2010 +0000 [t/spec] Unfudged test for RT 77072 - @a[*] works as expected now. git-svn-id: http://svn.pugscode.org/p...@31924 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S02-builtin_data_types/array.t b/t/spec/S02-builtin_data_types/array.t index 57c5f38..e2fc2e8 100644 --- a/t/spec/S02-builtin_data_types/array.t +++ b/t/spec/S02-builtin_data_types/array.t @@ -342,7 +342,6 @@ my @array2 = ("test", 1, Mu); #RT #77072 -#?rakudo skip 'RT 77072 star not working for array indexing yet - code fails' { my @a = <1 2 3>; is @a[*], <1 2 3> , 'using * to access all array elements works';