# New Ticket Created by Richard Hainsworth # Please include the string: [perl #74636] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=74636 >
code executed on #perl6 April24 I would expect both outputs to be the same. But the array is wrapped again in an array. finanalyst: rakudo: class A {has @.s}; my %h='n'=><a1 a2 a3>; say %h<n>.perl;my A $x.=new(:s(%h<n>));say $x.s.perl p6eval: rakudo 543d67: OUTPUT«("a1", "a2", "a3")[("a1", "a2", "a3")]»