Move Test::Simple from lib to ext.
[p5sagit/p5-mst-13.2.git] / ext / Test-Simple / t / lib / SigDie.pm
CommitLineData
87f9c3f5 1package SigDie;
2
3e887aae 3use strict;
4
5our $DIE;
87f9c3f5 6$SIG{__DIE__} = sub { $DIE = $@ };
7
81;