소스 검색

* threadvar in for loop

peter 23 년 전
부모
커밋
270c85450b
1개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. 15 0
      tests/tbf/tb0129.pp

+ 15 - 0
tests/tbf/tb0129.pp

@@ -0,0 +1,15 @@
+{ %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.