5 $SIG{__DIE__} = sub { print ref($_[0]) ? ("ok ",$_[0]->[0]++,"\n") : @_ } ;
7 $err = "#[\000]\nok 1\n";
12 print "not " unless $@ eq $err;
18 print "not " unless $x->[0] == 4;
30 die bless [ 7 ], "Error";
35 print "not " unless ref($@) eq "Out";
41 print "ok ",$_[0]->[0]++,"\n";
42 bless [$_[0]->[0]], "Out";