# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64332] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64332 >
<pmichaud> rakudo: my %hash = (1 => 2); say "{%hash<>}"; <p6eval> rakudo 78cb4c: OUTPUT«» <pmichaud> hmmm. <masak> bug? <PerlJam> looks like one to me. <pmichaud> my @list = (1,2,3,4); say "{...@list[]}"; <pmichaud> rakudo: my @list = (1,2,3,4); say "{...@list[]}"; <p6eval> rakudo 78cb4c: OUTPUT«1 2 3 4» * masak submits rakudobug <pmichaud> yes, I suspect it's a bug in postcircumfix:< > <masak> rakudo: my %hash = (1 => 2); say %hash<>; <p6eval> rakudo 78cb4c: OUTPUT«»