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


If you add any spaces anywhere in reduce part of the following it fails to 
compile.
Rakudo complains about two terms in a row immediately following the reduce part 
if you do.

    [[&({$^a*2+$^b})]] 1,2,3

That is this should be valid

    [[&( { $^a * 2 + $^b } )]] 1,2,3

It works if you write it as infix operators

    1 [&( { $^a * 2 + $^b } )] 2 [&( { $^a * 2 + $^b } )] 3

This also affects triangle reduce

    [\[&({$^a*2+$^b})]] 1,2,3

Reply via email to