summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2015-12-07 16:24:52 +1100
committerTony Cook <tony@develop-help.com>2016-01-11 08:51:16 +1100
commitbeb08a1e6d63c1eed4da66e066991eb58afccde7 (patch)
treea5ace2dfb614d323f1979d5482b5f7f3671ae9b8 /t
parent0072721ceb719c27771e260b6e8516b947c4bb94 (diff)
downloadperl-beb08a1e6d63c1eed4da66e066991eb58afccde7.tar.gz
[perl #126633] if we see smagic on the left copy the rest on the right
Diffstat (limited to 't')
-rw-r--r--t/op/aassign.t6
1 files changed, 1 insertions, 5 deletions
diff --git a/t/op/aassign.t b/t/op/aassign.t
index 8e3087e384..d6a1a42321 100644
--- a/t/op/aassign.t
+++ b/t/op/aassign.t
@@ -359,9 +359,7 @@ SKIP: {
tie @proxy, "ArrayProxy", \@real;
@proxy[0, 1] = @real[1, 0];
is($real[0], "b", "tied left first");
- { local $::TODO = "#126633";
is($real[1], "a", "tied left second");
- }
@real = @base;
@real[0, 1] = @proxy[1, 0];
is($real[0], "b", "tied right first");
@@ -371,9 +369,7 @@ SKIP: {
@real = @base;
@proxy[0, 1] = @proxy[1, 0];
is($real[0], "b", "tied both first");
- { local $::TODO = "#126633";
- is($real[1], "a", "tied both b");
- }
+ is($real[1], "a", "tied both second");
@real = @base;
($temp, @real) = @proxy[1, 0];
is($real[0], "a", "scalar/array tied right");