# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #116234] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=116234 >
<doy> r: our $thing = False; proto foo {*}; multi foo { temp $thing = True }; sub bar { die "???" if $thing }; foo; bar; <p6eval> rakudo 930369: OUTPUT«??? [...] <doy> r: our $thing = False; sub foo { temp $thing = True }; sub bar { die "???" if $thing }; foo; bar; <p6eval> rakudo 930369: ( no output ) <doy> seems like temp doesn't work properly in multisubs? * masak submits rakudobug