diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-07-19 10:09:57 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-07-19 10:09:57 +0000 |
commit | 1a4aeaf6cd5b55c4bc394654790805ad868b2936 (patch) | |
tree | b14ffff6b894be99bcbb43af80f60bb330cabd87 /t | |
parent | 945ffa4f5b4934f08041070c2899013a3af4e644 (diff) | |
download | perl-1a4aeaf6cd5b55c4bc394654790805ad868b2936.tar.gz |
Fix strict test to go with the precedent warning change
p4raw-id: //depot/perl@25182
Diffstat (limited to 't')
-rw-r--r-- | t/lib/strict/vars | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/lib/strict/vars b/t/lib/strict/vars index e48283193b..06d9e0059e 100644 --- a/t/lib/strict/vars +++ b/t/lib/strict/vars @@ -372,14 +372,14 @@ EXPECT 20 ######## -# multiple our declarations in same scope, same package, warning +# multiple our declarations in same scope, same package, no warning use strict 'vars'; use warnings; our $foo; ${foo} = 10; our $foo; EXPECT -"our" variable $foo masks earlier declaration in same scope at - line 7. + ######## # multiple our declarations in same scope, same package, warning |