The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl -w

# Test that autodie doesn't pollute the caller with carp and croak.

use strict;

use Test::More tests => 2;

use autodie;

ok !defined &main::carp;
ok !defined &main::croak;