projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
41a7501
)
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
patch
|
blob
|
blame
|
history
diff --git
a/ext/Storable/t/tied.t
b/ext/Storable/t/tied.t
index
05bcf32
..
662d9ae
100644
(file)
--- a/
ext/Storable/t/tied.t
+++ b/
ext/Storable/t/tied.t
@@
-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;