in reply to Re: write to /dev/full does not fail
in thread write to /dev/full does not fail

You need
perl -Mautodie ...

i.e. a captial M. Otherwise you're doing the equivalent of

use autodie ();
and thus enabling autodie only for a list of zero builtins.

Dave.