Quick integration of mainline changes to date
[p5sagit/p5-mst-13.2.git] / ext / Thread / die2.t
CommitLineData
3487771d 1use Thread 'async';
2
3$t = async {
4 sleep 1;
5 print "here\n";
6 die "success if preceded by 'thread died...'";
7 print "shouldn't get here\n";
8};
9
10print "joining...\n";
11@r = eval { $t->join; };
12if ($@) {
13 print "thread died with message: $@";
14} else {
15 print "thread failed to die successfully\n";
16}