mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 04:39:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			182 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			182 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{ Old file: tbf0343.pp }
 | 
						|
 | 
						|
{$mode delphi}
 | 
						|
type
 | 
						|
  TListEntry = record
 | 
						|
    Next: ^TListEntry;                    // delphi and fpc allows this now
 | 
						|
    Data: Integer;
 | 
						|
  end;
 | 
						|
 | 
						|
begin
 | 
						|
end.
 |