-
Notifications
You must be signed in to change notification settings - Fork 550
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
no assignment to "my" variable #16655
Comments
From wolf-dietrich_moeller@t-online.deThe following error is a regression in Perl 5.28. my $m = 'TEST_my';
$t = 'TEST___';
$k = 'k';
($m = '??'.$k) .= ' m';
($t = '??'.$k) .= ' t';
print $m,"\n",$t,"\n"; output for Perl 5.26.2.1 (correct)
output for Perl 5.28.0.1 (no assignment in line 4 to $m)
Perl Info
|
From @iabynOn Sat, Aug 11, 2018 at 01:11:15PM -0700, Wolf-Dietrich Moeller (via RT) wrote:
The optimiser is misinterpreting the optree in the ($m = '??'.$k) .= ' m' -- |
The RT System itself - Status changed from 'new' to 'open' |
From @iabynOn Sat, Aug 11, 2018 at 11:03:34PM +0100, Dave Mitchell wrote:
Now fixe din blead with the following commit. This is suitable for commit 0fe04e1 multiconcat: mutator not seen in (lex = ...) .= ... -- |
This is fixed in 5.30. @jkeenan do we need to label this before closing it? |
I'm not sure what label you would want to apply? Can you clarify? |
I was thinking we need to label it with a mile stone or something so we know where it was fixed? |
On 1/31/20 11:29 AM, Todd Rinaldo wrote:
I was thinking we need to label it with a mile stone or something so we
know where it was fixed?
Perhaps we should do that going forward, but it hasn't been SOP so far
and I don't recall us being insistent on (or consistent at) that sort of
thing when we were in RT.
|
Migrated from rt.perl.org#133441 (status was 'open')
Searchable as RT133441$
The text was updated successfully, but these errors were encountered: