Fix up .gitignore files some more
[p5sagit/p5-mst-13.2.git] / ext / Storable / t / tied.t
index 05bcf32..662d9ae 100644 (file)
@@ -211,7 +211,7 @@ ok 22, $FAULT::fault == 2;
 {
     package P;
     use Storable qw(freeze thaw);
-    our ($a,$b);
+    use vars qw($a $b);
     $b = "not ok ";
     sub TIESCALAR { bless \$a } sub FETCH { "ok " }
     tie $a, P; my $r = thaw freeze \$a; $b = $$r;