# New Ticket Created by  Jan-Olof Hendig 
# Please include the string:  [perl #131344]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=131344 >


# system
dogbert@dogbert-VirtualBox ~ $ perl6 -v
This is Rakudo version 2017.05-30-g32eb285f1 built on MoarVM version 2017.05
implementing Perl 6.c.

# the problem take one
dogbert@dogbert-VirtualBox ~ $ perl6 -e 'my $l = (1, 2, 3); say (0, slip 
$l).perl'
(0, 1, 2, 3)

# the problem take two
dogbert@dogbert-VirtualBox ~ $ perl6 -e 'my $l = (1, 2, 3); say (0, $(slip 
$l)).perl'
(0, 1, 2, 3)

There's reason to suspect that the correct result, in both cases, should have 
been
(0, $(1, 2, 3))

Zoffix++ found a suspicious commit, i.e. 
https://github.com/rakudo/rakudo/commit/37d0e4661414de827de35835de2e77a81d1d23df

Reply via email to