summaryrefslogtreecommitdiff
path: root/t/op/local.t
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-07-12 07:48:29 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-07-12 07:48:29 +0000
commit27342c9aaae52f56fd3c005d22d03d17597170fd (patch)
tree49ef1ab4c43febd09b991586673fd99a0a09bc25 /t/op/local.t
parenta393eb287998e9573b969f843d4a023c7a18aee5 (diff)
downloadperl-27342c9aaae52f56fd3c005d22d03d17597170fd.tar.gz
Link TODO test to appropriate RT ticket
p4raw-id: //depot/perl@31594
Diffstat (limited to 't/op/local.t')
-rwxr-xr-xt/op/local.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/local.t b/t/op/local.t
index 8bfea00b9a..0fe1b2e049 100755
--- a/t/op/local.t
+++ b/t/op/local.t
@@ -332,7 +332,7 @@ eval { for("a") { for $x (1,2) { local $_="b"; s/(.*)/+$1/ } } };
is($@, "");
# Special local() behavior for $[
-# (see RT #38207 - Useless localization of constant ($[) in getopts.pl}
+# (see RT #43425, which contains a potential fix)
{
local $[ = 1;
local $TODO = "local() not currently working correctly with \$[";