# New Ticket Created by "Dave Whipp" # Please include the string: [perl #61692] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=61692 >
It's seems that Rakudo's notion of equality under the "===" operator doesn't handle junctions: <dwhipp> pugs: say "yes" if 1 === 1|2 <p6eval> pugs: OUTPUT«yes» <dwhipp> rakudo: say "yes" if 1 === 1|2 <p6eval> rakudo 34350: RESULT«Bool::False»