This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
in Carp, fix circular dep on Perl 5.6
[perl5.git] / dist / Carp / t / heavy.t
CommitLineData
2f87dc78 1print "1..3\n";
2a420f95
Z
2
3print defined(&Carp::carp) ? "not " : "", "ok 1 # control\n";
4require Carp::Heavy;
5print defined(&Carp::carp) ? "" : "not ", "ok 2 # carp loaded by Carp::Heavy\n";
2f87dc78
Z
6eval q{
7 print $Carp::Heavy::VERSION eq $Carp::VERSION ? "" : "not ",
8 "ok 3 # version numbers match\n";
9};
2a420f95
Z
10
111;