tb0129.pp 226 B

123456789101112131415
  1. { %fail }
  2. { %version=1.1 }
  3. {$ifdef fpc}
  4. {$mode objfpc}
  5. {$threading on}
  6. {$endif}
  7. threadvar
  8. thri : longint;
  9. begin
  10. { Delphi does not allow threadvars as for loop control variable }
  11. for thri:=1 to 1000 do;
  12. end.