diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2005-07-19 01:05:18 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2005-07-19 01:05:18 +0000 |
commit | 2fc04a10ca47a4a5713a39beb29dd8beb9d0f653 (patch) | |
tree | 020f82c7edac855c0fc33eacfe5d435246dab658 | |
parent | 104abab4d74e683ce85183b2dbebc4a99f9336da (diff) | |
download | perl-2fc04a10ca47a4a5713a39beb29dd8beb9d0f653.tar.gz |
the "local @foo with $#foo" tests are no longer TODO
p4raw-id: //depot/perl@25176
-rwxr-xr-x | t/op/array.t | 4 |
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); |