summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-07-11 19:31:40 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-07-11 19:31:40 +0000
commitfafcdf9e12935d93b4cd9172ce7cd496485ba41b (patch)
tree57af5934e817b49fcb17b1cd5552313522645d8b /t
parente9569a7a55e6b33419f56b3697245a199938eb42 (diff)
downloadperl-fafcdf9e12935d93b4cd9172ce7cd496485ba41b.tar.gz
Turn the "$# / $* is no longer supported" warnings into
severe warnings (as suggested by Audrey Tang) p4raw-id: //depot/perl@31589
Diffstat (limited to 't')
-rw-r--r--t/lib/warnings/gv5
1 files changed, 2 insertions, 3 deletions
diff --git a/t/lib/warnings/gv b/t/lib/warnings/gv
index 17ab2f02d4..42565f2325 100644
--- a/t/lib/warnings/gv
+++ b/t/lib/warnings/gv
@@ -43,12 +43,11 @@ EXPECT
Use of inherited AUTOLOAD for non-method main::fred() is deprecated at - line 5.
########
# gv.c
-use warnings 'deprecated' ;
$a = ${"#"};
$a = ${"*"};
no warnings 'deprecated' ;
$a = ${"#"};
$a = ${"*"};
EXPECT
-$# is no longer supported at - line 3.
-$* is no longer supported at - line 4.
+$# is no longer supported at - line 2.
+$* is no longer supported at - line 3.