diff options
author | Nicholas Clark <nick@ccl4.org> | 2013-04-08 17:05:11 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2013-05-03 12:03:04 +0200 |
commit | 4f650b80ec9c5c9641951c5c41c2a5ac37012b7d (patch) | |
tree | 91d93104d770ded811101309e2746907642297f6 /t/lib/warnings/2use | |
parent | 5b6da579918d96df1d2cd514c5f756d1d246c723 (diff) | |
download | perl-4f650b80ec9c5c9641951c5c41c2a5ac37012b7d.tar.gz |
Revert "Change the warning for $* to add ", and will become a syntax error"."
This reverts commit 53213d38f22e9356f489162e494d2ffa46ec2ca2.
Conflicts:
pod/perldelta.pod
Diffstat (limited to 't/lib/warnings/2use')
-rw-r--r-- | t/lib/warnings/2use | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/lib/warnings/2use b/t/lib/warnings/2use index 6c7f56f3e6..c0d203a399 100644 --- a/t/lib/warnings/2use +++ b/t/lib/warnings/2use @@ -365,7 +365,7 @@ $*; use warnings "void"; $#; EXPECT -$* is no longer supported, and will become a syntax error at - line 3. +$* is no longer supported at - line 3. $# is no longer supported at - line 5. Useless use of a variable in void context at - line 5. ######## @@ -375,5 +375,5 @@ $*; no warnings "void"; $#; EXPECT -$* is no longer supported, and will become a syntax error at - line 3. +$* is no longer supported at - line 3. $# is no longer supported at - line 5. |