mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 08:19:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			221 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			221 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{ %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.
 |