Subject: | Test failure with bleedperl |
The Tie::Watch test fails with perl5.9.5 (patch 29319):
Can't use string ("5") as an ARRAY ref while "strict refs" in use at
blib/lib/Tie/Watch.pm line 496.
The problem may be fixed if changing the line 496 from
sub Storesize {$#{@{$_[0]->{-ptr}}} = $_[1] - 1}
(which seems to use non-valid syntax) to
sub Storesize {$#{$_[0]->{-ptr}} = $_[1] - 1}
Regards,
Slaven