fpc/tests/webtbs/tw16326.pp
2010-04-24 14:52:08 +00:00

29 lines
324 B
ObjectPascal

{$mode objfpc}
{$H+}
uses
{$ifdef unix}
cthreads,
{$endif}
classes
;
type
tthread1 = class(tthread)
public
procedure execute; override;
end;
procedure tthread1.execute;
begin
end;
var
thread1: tthread1;
begin
thread1 := tthread1.create(true);
thread1.start;
thread1.waitfor;
thread1.free;
end.