From: Rafael Garcia-Suarez Date: Tue, 19 Jul 2005 10:09:57 +0000 (+0000) Subject: Fix strict test to go with the precedent warning change X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1a4aeaf6cd5b55c4bc394654790805ad868b2936;p=p5sagit%2Fp5-mst-13.2.git Fix strict test to go with the precedent warning change p4raw-id: //depot/perl@25182 --- diff --git a/t/lib/strict/vars b/t/lib/strict/vars index e482831..06d9e00 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