On Sat, 25 Feb 2017 22:06:29 -0800, cookbook_...@yahoo.co.jp wrote:
> See the following example:
> 
> $ perl6 -e 'my @a; @a = [[1, 2], [3, 4]]; @a[0;*].say;'
> (1 2)
> 
> $ perl6 -e 'my @a[2;2]; @a = [[1, 2], [3, 4]]; @a[0;*].say;'
>  Partially dimensioned views of arrays not yet implemented. Sorry.
>   in block <unit> at -e line 1
> 
> 
> I'm not sure this is a bug or really not yet implemented as the 2nd
> example says.
> However, "partially dimensioned views of arrays" seems implemented as
> the 1st example shows.
> 
> 
> $ perl6 --version
> This is Rakudo version 2017.02-58-gd41b68e built on MoarVM version
> 2017.02-7-g3d85900
> implementing Perl 6.c.


Thank you for the report. This is now fixed.

Rakudo fix: https://github.com/rakudo/rakudo/commit/3bf734f644
Tests: (none, since this is just a clarification of NYI error message)

Reply via email to