# New Ticket Created by Sam S. # Please include the string: [perl #128858] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=128858 >
➜ my &x = (1 < *+1 < 5);
===SORRY!===
QAST::Block with cuid 1 has not appeared
When removing the method call, it works fine:
➜ my &x = (1 < * < 5);
Removing one of the comparison operators, :
➜ my &x = (1 < *.Int);
➜ my &x = (*.Int < 5);
But this fails to parse:
