diff options
author | Robin Houston <robin@cpan.org> | 2001-04-06 19:10:14 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-04-07 17:29:47 +0000 |
commit | b0840a2a4e2429536ffb069928546c0cd4916ac8 (patch) | |
tree | 067a493616b7c4f305697652a77c35578aa784b6 /t/op/array.t | |
parent | 59bb58455c306b86a68fba97f3fcce0a1f372a01 (diff) | |
download | perl-b0840a2a4e2429536ffb069928546c0cd4916ac8.tar.gz |
PATCH: $[
Message-ID: <20010406181014.A18803@puffinry.freeserve.co.uk>
p4raw-id: //depot/perl@9614
Diffstat (limited to 't/op/array.t')
-rwxr-xr-x | t/op/array.t | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/op/array.t b/t/op/array.t index d48b5fbfa0..122a49ec3c 100755 --- a/t/op/array.t +++ b/t/op/array.t @@ -234,3 +234,16 @@ sub foo { "a" } @foo=(foo())[0,0]; $foo[1] eq "a" or print "not "; print "ok 71\n"; + +# $[ should have the same effect regardless of whether the aelem +# op is optimized to aelemfast. + +sub tary { + local $[ = 10; + my $five = 5; + print "not " unless $tary[5] == $tary[$five]; + print "ok 72\n"; +} + +@tary = (0..50); +tary(); |