mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
32 lines
318 B
ObjectPascal
32 lines
318 B
ObjectPascal
{ %OPT=-gh }
|
|
|
|
program tw35028;
|
|
|
|
{$mode objfpc}
|
|
|
|
uses
|
|
{$ifdef unix}
|
|
cthreads,
|
|
{$endif}
|
|
Classes;
|
|
|
|
type
|
|
TTest = class
|
|
procedure Test;
|
|
end;
|
|
|
|
procedure TTest.Test;
|
|
begin
|
|
raise TObject.Create;
|
|
end;
|
|
|
|
var
|
|
t: TTest;
|
|
begin
|
|
HaltOnNotReleased := True;
|
|
try
|
|
TThread.Queue(Nil, @t.Test);
|
|
except
|
|
end;
|
|
end.
|