[perl #129306] [LTA] “cannot stringify this” error message if the signature is incorrect ( sub foo(@array ($first, @rest)) )

2016-09-21 Thread jn...@jnthn.net via RT
On Sun Sep 18 17:09:21 2016, alex.jakime...@gmail.com wrote: > Code: > sub foo(@array ($first, @rest)) { say @rest }; > foo <1 2 3> > > Result: > cannot stringify this > in sub foo at -e line 1 > in block at -e line 2 > > “cannot stringify this” error message is coming from MoarVM. This should

[perl #129306] [LTA] “cannot stringify this” error message if the signature is incorrect ( sub foo(@array ($first, @rest)) )

2016-09-18 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #129306] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=129306 > Code: sub foo(@array ($first, @rest)) { say @rest }; foo <1 2 3>