mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 07:59:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			215 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			215 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
unit uw18087a;
 | 
						|
 | 
						|
interface
 | 
						|
 | 
						|
{$mode delphi}
 | 
						|
 | 
						|
type
 | 
						|
  TFoo1 = class
 | 
						|
  protected // it worked if "protected" was removed
 | 
						|
    procedure Proc1; virtual;
 | 
						|
  end;
 | 
						|
 | 
						|
implementation
 | 
						|
 | 
						|
  procedure TFoo1.Proc1;
 | 
						|
  begin
 | 
						|
  end;
 | 
						|
 | 
						|
end. |