From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!perl
use strict;
use Test::More tests => 2;
use_ok 'Util::Underscore';
SKIP: {
skip "The '_' filehandle has been used" => 1 if *_{IO};
throws_ok { eval q{use _; 1} or die $@ }
qr/"_" package is internal to Util::Underscore/;
}