packageautodie_skippy;usestrict;usewarnings;useautodie;useparentqw(autodie::skip);# This should skip upwards to the caller.subfail_open{open(my$fh,'<','this_file_had_better_not_exist');}packageautodie_unskippy;useautodie;# This should not skip upwards.subfail_open{open(my$fh,'<','this_file_had_better_not_exist');}1;