summaryrefslogtreecommitdiff
path: root/t/lib/warnings
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-04-06 06:21:32 -0700
committerFather Chrysostomos <sprout@cpan.org>2011-04-06 08:40:08 -0700
commit5c7d20ff772f490f6e0682ae0aa17d26f6773354 (patch)
tree8205d703b33e353dd6bbd1b41692d0c574fcd37a /t/lib/warnings
parentf2bd3a8b9855e84ab43505429524667042927760 (diff)
downloadperl-5c7d20ff772f490f6e0682ae0aa17d26f6773354.tar.gz
[perl #87708] use integer; $tied <= $tied
This is just part of #87708. This fixes <= under ‘use integer’ when the same tied scalar is used for both operands and returns two different values. Before this com- mit, get-magic would be called only once and the same value used. In 5.12.x the operands were swapped.
Diffstat (limited to 't/lib/warnings')
-rw-r--r--t/lib/warnings/9uninit2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/warnings/9uninit b/t/lib/warnings/9uninit
index f266bd4a0b..de9ec4711d 100644
--- a/t/lib/warnings/9uninit
+++ b/t/lib/warnings/9uninit
@@ -571,8 +571,8 @@ Use of uninitialized value $g1 in integer lt (<) at - line 13.
Use of uninitialized value $m1 in integer lt (<) at - line 13.
Use of uninitialized value $g1 in integer gt (>) at - line 14.
Use of uninitialized value $m1 in integer gt (>) at - line 14.
-Use of uninitialized value $g1 in integer le (<=) at - line 15.
Use of uninitialized value $m1 in integer le (<=) at - line 15.
+Use of uninitialized value $g1 in integer le (<=) at - line 15.
Use of uninitialized value $m1 in integer ge (>=) at - line 16.
Use of uninitialized value $g1 in integer ge (>=) at - line 16.
Use of uninitialized value $m1 in integer eq (==) at - line 17.