fpc/tests/webtbs/tw17560.pp
2016-07-13 15:21:23 +00:00

34 lines
527 B
ObjectPascal

{%skiptarget=$nothread }
{ %OPT=-gh }
// Creating a suspended TThread and then destroying it should not cause memory leaks.
// Also, Execute() method should not be called.
{$ifdef fpc}{$mode objfpc}{$endif}
uses
{$ifdef unix}
cthreads,
{$endif}
SysUtils, Classes;
type
TMyThread = class(TThread)
procedure Execute; override;
end;
var
t: TThread;
Flag: Boolean;
procedure TMyThread.Execute;
begin
flag := True;
end;
begin
Flag := False;
t := TMyThread.Create(True);
t.Free;
Halt(ord(Flag));
end.