fpc/tests/tbf/tb0129.pp
2018-03-15 09:05:26 +00:00

17 lines
246 B
ObjectPascal

{%skiptarget=$nothread }
{ %fail }
{ %version=1.1 }
{$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.