# New Ticket Created by  djgoku 
# Please include the string:  [perl #128904]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=128904 >


I wanted to do (IRC Log of #perl6: 
http://irclog.perlgeek.de/perl6/2016-08-12#i_13009688 
<http://irclog.perlgeek.de/perl6/2016-08-12#i_13009688>):

my @a[2;2] = ([1, 2], [3,4]);
my @b[2;2] = ([1, 2], [3,4]);

@a ~~ @b; # I get this error: Partially dimensioned views of arrays not yet 
implemented. Sorry.

Though this works:

# start http://irclog.perlgeek.de/perl6/2016-08-12#i_13009865 
<http://irclog.perlgeek.de/perl6/2016-08-12#i_13009865>

say [[1,2],[3,4]] ~~ [[1,2],[3,4]]; 

also:

say [[1,2],[3,4]] env [[1,2],[3,4]];

# end http://irclog.perlgeek.de/perl6/2016-08-12#i_13009865

Jonathan Otsuka

Reply via email to