Re: any takers for this Storable bug?
Adrian M. Enache [Wed, 16 Apr 2003 21:11:11 +0000 (00:11 +0300)]
Message-ID: <20030416181111.GA6687@ratsnest.hole>

ams had already fixed the bug by #19227, but take the
test case.

p4raw-id: //depot/perl@19266

ext/Storable/t/tied.t

index a75766c..06be10b 100644 (file)
@@ -207,3 +207,14 @@ my $ht = thaw($hf);
 ok 20, defined $ht;
 ok 21, $ht->{'x'} == 1;
 ok 22, $FAULT::fault == 2;
+
+{
+    package P;
+    use Storable qw(freeze thaw);
+    our ($a,$b);
+    $b = "not ok ";
+    sub TIESCALAR { bless \$a } sub FETCH { "ok " }
+    tie $a, P; my $r = thaw freeze \$a; $b = $$r;
+    print $b , 23, "\n";
+}
+