1#!/usr/bin/perl -w 2 3# Test that autodie doesn't pollute the caller with carp and croak. 4 5use strict; 6 7use Test::More tests => 2; 8 9use autodie; 10 11ok !defined &main::carp; 12ok !defined &main::croak; 13