summaryrefslogtreecommitdiff
path: root/t/lib
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2013-04-08 16:53:47 +0200
committerNicholas Clark <nick@ccl4.org>2013-05-03 12:01:59 +0200
commit5b6da579918d96df1d2cd514c5f756d1d246c723 (patch)
tree539c3a6cd0370cc8a95bc12ff4da0998692a740f /t/lib
parent000947ada5b027f394ee63b5166df8c06b64a74e (diff)
downloadperl-5b6da579918d96df1d2cd514c5f756d1d246c723.tar.gz
Revert "Add a deprecation warning for all uses of @*, %*, &* and **."
This reverts commit 982110e06e40aad7a538cb788327cca8aaabce22. Conflicts: pod/perldelta.pod
Diffstat (limited to 't/lib')
-rw-r--r--t/lib/warnings/gv18
1 files changed, 0 insertions, 18 deletions
diff --git a/t/lib/warnings/gv b/t/lib/warnings/gv
index 332810c7e5..1618e40932 100644
--- a/t/lib/warnings/gv
+++ b/t/lib/warnings/gv
@@ -100,7 +100,6 @@ $* is no longer supported, and will become a syntax error at - line 7.
$a = $#;
$a = $*;
EXPECT
-@* is deprecated, and will become a syntax error at - line 3.
$# is no longer supported at - line 4.
$* is no longer supported, and will become a syntax error at - line 5.
########
@@ -112,23 +111,6 @@ $a = $*;
EXPECT
$# is no longer supported at - line 2.
$* is no longer supported, and will become a syntax error at - line 3.
-@* is deprecated, and will become a syntax error at - line 5.
-########
-# gv.c
-$a = \@*;
-$a = \&*;
-$a = \**;
-$a = \%*;
-no warnings 'deprecated' ;
-$a = \@*;
-$a = \&*;
-$a = \**;
-$a = \%*;
-EXPECT
-@* is deprecated, and will become a syntax error at - line 2.
-&* is deprecated, and will become a syntax error at - line 3.
-** is deprecated, and will become a syntax error at - line 4.
-%* is deprecated, and will become a syntax error at - line 5.
########
# gv.c
use warnings 'syntax' ;