# New Ticket Created by Elizabeth Mattijsen
# Please include the string: [perl #128382]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/Ticket/Display.html?id=128382 >
<lizmat> m: class A { method sink() { print "sunk " } }; my @a = A.new
xx 10 # looks like assigning it is sinking?
<camelia> rakudo-moar 915f45: OUTPUT«sunk sunk sunk sunk sunk sunk sunk
sunk sunk sunk »
<lizmat> this shouldn't happen, now should it ?
<jnthn> lizmat: That sinking looks wrong, yeah. I mean, sinking implies "this
value is being thrown away", and storing it in a variable is certainly not
throwing it away :)
<lizmat> jnthn: ok, looking into it
<lizmat> actually, looks like xx is sinking it