fpc/tests/webtbs/tw35862.pp
marco b8e3d6efa1 # revisions: 41570,41571,41938,42457,42327,42556,42557
git-svn-id: branches/fixes_3_2@43393 -
2019-11-05 15:16:28 +00:00

23 lines
309 B
ObjectPascal

{ %OPT=-gh }
program tw35862;
{$modeswitch result}
uses sysutils;
function do_term:boolean;
begin
writeln('In terminate proc');
Result:=true;
end;
begin
HaltOnNotReleased:=True;
writeln('Adding terminate proc');
AddTerminateproc(@do_term);
writeln('terminating');
CallterminateProcs;
end.