mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 02:19:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			147 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			147 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
program Test1;
 | 
						|
 | 
						|
  type
 | 
						|
    ExampleProc = procedure;
 | 
						|
 | 
						|
  var
 | 
						|
    Eg: ExampleProc;
 | 
						|
 | 
						|
  begin
 | 
						|
    Eg := nil;  { This produces a compiler error }
 | 
						|
  end.
 |