None of that "our" stuff here, please.
Abhijit Menon-Sen [Mon, 5 May 2003 04:03:10 +0000 (04:03 +0000)]
p4raw-id: //depot/perl@19413

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;