mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 12:23:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			219 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			219 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{ %OPT=-Ooloopunroll }
 | 
						|
var
 | 
						|
  i : integer;
 | 
						|
  s : single;
 | 
						|
 | 
						|
begin
 | 
						|
  s:=0.0;
 | 
						|
  for i:=1 to 2 do
 | 
						|
    s:=s+1;
 | 
						|
  for i:=1 to 10 do
 | 
						|
    s:=s+1;
 | 
						|
  for i:=1 to 11 do
 | 
						|
    s:=s+1;
 | 
						|
  if s<>23 then
 | 
						|
    halt(1);
 | 
						|
  writeln('ok');
 | 
						|
end.
 |