summaryrefslogtreecommitdiff
path: root/t/pragma/overload.t
diff options
context:
space:
mode:
Diffstat (limited to 't/pragma/overload.t')
-rwxr-xr-xt/pragma/overload.t15
1 files changed, 11 insertions, 4 deletions
diff --git a/t/pragma/overload.t b/t/pragma/overload.t
index 78ca147bf3..a5949b68d8 100755
--- a/t/pragma/overload.t
+++ b/t/pragma/overload.t
@@ -919,14 +919,21 @@ test $bar->[3], 13; # 206
my $aaa;
{ my $bbbb = 0; $aaa = bless \$bbbb, B }
-test !$aaa, 1;
+test !$aaa, 1; # 207
unless ($aaa) {
- test 'ok', 'ok';
+ test 'ok', 'ok'; # 208
} else {
- test 'is not', 'ok';
+ test 'is not', 'ok'; # 208
}
+# check that overload isn't done twice by join
+{ my $c = 0;
+ package Join;
+ use overload '""' => sub { $c++ };
+ my $x = join '', bless([]), 'pq', bless([]);
+ main::test $x, '0pq1'; # 209
+};
# Last test is:
-sub last {208}
+sub last {209}