fpc/tests/tbf/tb0129.pp
2024-10-31 22:35:04 +01:00

16 lines
229 B
ObjectPascal

{%skiptarget=$nothread }
{ %fail }
{$ifdef fpc}
{$mode objfpc}
{$threading on}
{$endif}
threadvar
thri : longint;
begin
{ Delphi does not allow threadvars as for loop control variable }
for thri:=1 to 1000 do;
end.