On Sun Jun 12 18:32:56 2011, CHROMATIC wrote:
Show quoted text> Thanks, commit pulled from Github and released as 1.20110613.
This doesn't really sound like the same issue, but I ran into this
problem (repro case below), which was solved by the patch in this bug
(proven by reverting just those two lines, which reproduced the bug again):
--8< snip--
use strict;
use warnings;
use UNIVERSAL::can;
use UNIVERSAL::isa;
use TryCatch;
sub foo
{
try
{
print "some code goes here\n";
}
catch ($e)
{
print "some code goes here\n";
}
}
__END__
# if UNIVERSAL::isa is included:
Use of uninitialized value in goto at
/usr/lib/perl5/site_perl/5.8.8/UNIVERSAL/isa.pm line 76.
Use of uninitialized value in goto at
/usr/lib/perl5/site_perl/5.8.8/UNIVERSAL/isa.pm line 76.
Use of uninitialized value in goto at
/usr/lib/perl5/site_perl/5.8.8/UNIVERSAL/isa.pm line 76.
Use of uninitialized value in goto at
/usr/lib/perl5/site_perl/5.8.8/UNIVERSAL/isa.pm line 76.
# and if it isn't:
Use of uninitialized value in subroutine entry at
/usr/lib/perl5/site_perl/5.8.8/UNIVERSAL/can.pm line 43.
Use of uninitialized value in subroutine entry at
/usr/lib/perl5/site_perl/5.8.8/UNIVERSAL/can.pm line 43.
Use of uninitialized value in subroutine entry at
/usr/lib/perl5/site_perl/5.8.8/UNIVERSAL/can.pm line 43.
Use of uninitialized value in subroutine entry at
/usr/lib/perl5/site_perl/5.8.8/UNIVERSAL/can.pm line 43.
-->8 snip--
So, thank you! :)