# New Ticket Created by Lloyd Fournier # Please include the string: [perl #128846] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=128846 >
my $a = "foo"; ($a if $a) = "bar"; say $a # bar my $a = "foo"; ($a with $a) = "bar"; say $a # Cannot modify an immutable Str my $a = "foo"; ($_ with $a) = "bar"; say $a # Cannot modify an immutable Str