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 / with_warnings.t
CommitLineData
edda670c
Z
1BEGIN { print "1..1\n"; }
2
3use Carp ();
4use warnings ();
5$SIG{__WARN__} = sub {};
6eval { warnings::warn("syntax", "foo") };
7print $@ eq "" ? "" : "not ", "ok 1\n";
8
91;