Subject: | "no autodie" may result in "Undefined subroutine called" errors |
The following script fails with "Undefined subroutine called at ... line 5." with newer autodie.pm versions. Experiments show that 2.23 is fine with this construct, and 2.25 and later versions fail:
#!perl
{
no autodie;
}
system 'true';
__END__