This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Let's remove the grep in void context warning.
[perl5.git] / t / lib / HasSigDie.pm
1 package HasSigDie;
2
3 $SIG{__DIE__} = sub { "Die, Bart, Die!" };
4
5 1;
6