[perl #116096] [BUG] Set.new erroneously flattens arrays in Rakudo

2014-10-08 Thread Christian Bartolomaeus via RT
Arrays are no longer flattened by Set.new: > say set(([1, 2], [3, 4])).perl set([1, 2],[3, 4]) I added a test to S02-types/set.t with the following commit: https://github.com/perl6/roast/commit/e8fd9ec55d

[perl #116096] [BUG] Set.new erroneously flattens arrays in Rakudo

2012-12-14 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #116096] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=116096 > r: say ([1, 2], [3, 4]).perl rakudo fc9c3b: OUTPUT«([1, 2], [3, 4])␤» r: say s