diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-12-04 09:53:55 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-12-04 10:51:22 -0800 |
commit | 90b58ec9e4b2574a8f7f11a0215f42453cfbc0a1 (patch) | |
tree | 060d70e0675340b11c84a2743634ec97e14bfa6b /t/op/exec.t | |
parent | 668a86254af1576eb43991facafcf3693c919b3f (diff) | |
download | perl-90b58ec9e4b2574a8f7f11a0215f42453cfbc0a1.tar.gz |
Deprecate lexical $_
See tickets #114020 and #75598 for why.
The changes to tests in cpan/Text-Tabs have been submitted upstream
at rt.cpan.org #81698.
Diffstat (limited to 't/op/exec.t')
-rw-r--r-- | t/op/exec.t | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/op/exec.t b/t/op/exec.t index fb0b104f83..09311c55f6 100644 --- a/t/op/exec.t +++ b/t/op/exec.t @@ -124,6 +124,7 @@ $Perl -le "print 'ok'" END { + no warnings 'deprecated'; my $_ = qq($Perl -le "print 'ok'"); is( readpipe, "ok\n", 'readpipe default argument' ); } |