On Mon, May 19, 2014 at 11:33 AM, PJF via RT <bug-autodie@rt.cpan.org> wrote:
Show quoted text>
> Drat. Can you help us out with your versions of Perl and autodie?
Not sure whether "Drat" is for me or another. But:
I'm sorry. I've now tested with a newer version of perl (5.14.2),
where this is not the problem it was on 5.10.1. So never mind, please
disregard. Must have been unrelated. Sorry.
old:~> perl -w -c -e 'use autodie; use A;'
Prototype mismatch: sub A::send (*$$;$) vs none at A.pm line 7.
Subroutine send redefined at A.pm line 6.
-e syntax OK
old:~> perl --version | grep This
This is perl, v5.10.1 (*) built for x86_64-linux-gnu-thread-multi
old:~> perl -E'use autodie; say $autodie::VERSION'
2.06_01
old:~> exit
exit
Connection to old closed.
newer:~> perl -w -c -e 'use autodie; use A;'
-e syntax OK
newer:~> perl --version | grep This
This is perl 5, version 14, subversion 2 (v5.14.2) built for
x86_64-linux-gnu-thread-multi
newer:~> perl -E'use autodie; say $autodie::VERSION'
2.1001
newer:~>