I'm expecting:
#!/usr/bin/perl
use autodie;
# autodie in effect here
{
no autodie;
# autodie is not in effect here
}
# autodie should be in effect here because of the supposedly lexical scope
# of autodie, but this doesn't die:
open my $i, '<', '/nonexistent';
I base that on perldoc autodie that says:
The "autodie" pragma has lexical scope, meaning that functions and subroutines altered with "autodie" will only change their behaviour until the end of the enclosing block, file, or "eval"
Also, { no autodie } (in a scope) is even part of the SYNOPSIS
use/no warnings behaves as I expect:
#!/usr/bin/perl
use warnings;
{
no warnings;
}
# This *does* generate a warning
print undef;
Have I missed something or do you agree there a bug in autodie? I didn't find anything in the autodie buglist
This is perl, v5.10.1 (*) built for i486-linux-gnu-thread-multi
EDIT: I've now filed a bug report