mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 01:39:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			105 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			105 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
type ta = array[1..1,1..100] of integer;
 | 
						|
 | 
						|
procedure t(a: ta);
 | 
						|
begin
 | 
						|
end;
 | 
						|
 | 
						|
var a: ta;
 | 
						|
 | 
						|
begin
 | 
						|
  t(a);
 | 
						|
end.
 |