# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #60528]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60528 >
Rakudo r32629 sometimes dies when assigning a readonly variable to
itself, and sometimes not.
$ ./perl6 -e 'for <a b c> -> $foo { $foo = $foo; say $foo }' # dies, good
Cannot assign to readonly variable.
[...]
$ ./perl6 -e 'for split(/<sp>/, "a b c") -> $foo { $foo = $foo; say
$foo }' # baaaahd!
a
b
c