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


There is a fuged test in S03-operators/misc.t that tests, whether a * as the 
last element of a list extends this list for infix:<Z> operator:

# L<S03/Traversing arrays in parallel/"but a short list may always be extended 
arbitrarily">
#?rakudo todo "nom regression"
#?niecza todo
{
    is (1, 2, * Z <a b c d>).join('|'),
       '1|a|2|b|2|c|2|d',
       'A * as the last value extends lists for infix:<Z> (zip)';
}

This does currently not work:
> 1, 2, * Z <a b c d>
1 a 2 b * c

Reply via email to