# New Ticket Created by Paweł Pabian
# Please include the string: [perl #75636]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=75636 >
Erlangen build:
# testing with Array
perl6 -e 'my @t=1,2; my %h; %...@t}="one","two"; say %h.perl'
{"1 2" => ("one", "two")}
# testing with GatherIterator
perl6 -e 'my %h; %h{"12".comb(/(\d)/)}="one","two"; say %h.perl'
{"" => ("one", "two")}
In both cases it should be:
{1 => "one", 2 => "two"}