summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorNick Ing-Simmons <nik@tiuk.ti.com>1999-08-12 19:17:20 +0000
committerNick Ing-Simmons <nik@tiuk.ti.com>1999-08-12 19:17:20 +0000
commit7e291ef107a151a0b630a8ce85d6a562438da741 (patch)
treebfedf16225c4631bb72a97f104f2fffd75148be9 /t
parenta0e9c8c7a9cc6b6f25b14d351ab0537c5ba739ed (diff)
downloadperl-7e291ef107a151a0b630a8ce85d6a562438da741.tar.gz
Turn of deprecated warnings for defined(@Sompack::ISA) type
tests i.e. RV2AV and RV2HV p4raw-id: //depot/perl@3970
Diffstat (limited to 't')
-rw-r--r--t/pragma/warn/op16
1 files changed, 0 insertions, 16 deletions
diff --git a/t/pragma/warn/op b/t/pragma/warn/op
index 2377066622..b5d2e71ebe 100644
--- a/t/pragma/warn/op
+++ b/t/pragma/warn/op
@@ -89,13 +89,11 @@
defined(@array) is deprecated
(Maybe you should just omit the defined()?)
- defined @a ;
my @a ; defined @a ;
defined (@a = (1,2,3)) ;
defined(%hash) is deprecated
(Maybe you should just omit the defined()?)
- defined %h ;
my %h ; defined %h ;
Mandatory Warnings
@@ -739,13 +737,6 @@ Statement unlikely to be reached at - line 4.
########
# op.c
use warning 'deprecated' ;
-defined(@a);
-EXPECT
-defined(@array) is deprecated at - line 3.
-(Maybe you should just omit the defined()?)
-########
-# op.c
-use warning 'deprecated' ;
my @a; defined(@a);
EXPECT
defined(@array) is deprecated at - line 3.
@@ -760,13 +751,6 @@ defined(@array) is deprecated at - line 3.
########
# op.c
use warning 'deprecated' ;
-defined(%h);
-EXPECT
-defined(%hash) is deprecated at - line 3.
-(Maybe you should just omit the defined()?)
-########
-# op.c
-use warning 'deprecated' ;
my %h; defined(%h);
EXPECT
defined(%hash) is deprecated at - line 3.