summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2005-07-19 01:05:18 +0000
committerDave Mitchell <davem@fdisolutions.com>2005-07-19 01:05:18 +0000
commit2fc04a10ca47a4a5713a39beb29dd8beb9d0f653 (patch)
tree020f82c7edac855c0fc33eacfe5d435246dab658
parent104abab4d74e683ce85183b2dbebc4a99f9336da (diff)
downloadperl-2fc04a10ca47a4a5713a39beb29dd8beb9d0f653.tar.gz
the "local @foo with $#foo" tests are no longer TODO
p4raw-id: //depot/perl@25176
-rwxr-xr-xt/op/array.t4
1 files changed, 1 insertions, 3 deletions
diff --git a/t/op/array.t b/t/op/array.t
index 698d4dc5a1..6461a433bc 100755
--- a/t/op/array.t
+++ b/t/op/array.t
@@ -308,8 +308,6 @@ sub test_arylen {
my $ref = \@array;
- local $TODO = '$#foo semantics with local @foo not fixed yet';
-
my $inner;
{
local @array;
@@ -330,7 +328,7 @@ sub test_arylen {
is (scalar @array, 7);
is ($$outer, 6);
- is ($$inner, 0, "This is emergent behaviour");
+ is ($$inner, undef, "orphaned $#foo is always undef");
is (scalar @array, 7);
is ($$outer, 6);