mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 08:19:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			142 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			142 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{ %recompile }
 | 
						|
 | 
						|
uses ub0506;
 | 
						|
 | 
						|
var
 | 
						|
  c : c2;
 | 
						|
  i : integer;
 | 
						|
begin
 | 
						|
  c:=c2.create;
 | 
						|
  c.value:=1;
 | 
						|
  i:=c.value;
 | 
						|
  if i<>2 then
 | 
						|
    halt(1);
 | 
						|
end.
 |