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


This should work:

Code:
say (:?foo);

Result:
===SORRY!=== Error while compiling -e
Bogus statement
at -e:1
------> say (:⏏?foo);
    expecting any of:
        colon pair


Because these work:

Code:
say (:foo);
say (:!foo);

Result:
foo => True
foo => False

Reply via email to