diff options
-rw-r--r-- | t/lib/warnings/op | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/t/lib/warnings/op b/t/lib/warnings/op index c05aa9b584..b44910316f 100644 --- a/t/lib/warnings/op +++ b/t/lib/warnings/op @@ -799,6 +799,13 @@ my $a EXPECT ######## # op.c +# TODO - defined @::array doesn't warn yet. +defined(@a); +EXPECT +defined(@array) is deprecated at - line 2. + (Maybe you should just omit the defined()?) +######## +# op.c my @a; defined(@a); EXPECT defined(@array) is deprecated at - line 2. @@ -811,6 +818,12 @@ defined(@array) is deprecated at - line 2. (Maybe you should just omit the defined()?) ######## # op.c +defined(%h); +EXPECT +defined(%hash) is deprecated at - line 2. + (Maybe you should just omit the defined()?) +######## +# op.c my %h; defined(%h); EXPECT defined(%hash) is deprecated at - line 2. |