# New Ticket Created by  Chris Fields 
# Please include the string:  [perl #73774]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=73774 >


Using tight OR for conditional tests is broken when chaining more than two 
tests (note second and forth test cases below).  This is using rakudo (rev 
a16cde8), below is the version.

chris

Example code:

cjfields$ perl6 -v
This compiler is built with the Parrot Compiler Toolkit, parrot revision 45127.
cjfields$ perl6
> say 1 || 1
1
> say 0 || 1
1
> say 0 || 0 || 1
0
> say 0 || 1 || 0 || 0
1


Reply via email to