mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 07:43:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			194 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			194 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
unit tw9673;
 | 
						|
 | 
						|
interface
 | 
						|
{$mode objfpc}
 | 
						|
 | 
						|
type
 | 
						|
  generic Testclass<T> = class
 | 
						|
  
 | 
						|
  type
 | 
						|
    TList = array of byte;
 | 
						|
	
 | 
						|
  end;
 | 
						|
	    
 | 
						|
var
 | 
						|
  b : Testclass.TList;
 | 
						|
	      
 | 
						|
	    
 | 
						|
implementation
 | 
						|
begin
 | 
						|
end. |