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
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";
+}
+