# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #74302] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=74302 >
<masak> rakudo: my @a = "!", a => "1", b => "2", c => "3"; my ($name, %opts) = @a; say %opts.perl <p6eval> rakudo 0334df: OUTPUT«{"a" => "1"}» * masak submits rakudobug <moritz_> huh? <masak> I'd expect all pairs to go in %opts. <masak> they did in alpha. <masak> probably workaroundable. <masak> rakudo: my @a = "!", a => "1", b => "2", c => "3"; my %opts = @a[...@a-1]; say %opts.perl <p6eval> rakudo 0334df: OUTPUT«{"a" => "1", "b" => "2", "c" => "3"}» <masak> yup :)