mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 20:31:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			270 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			270 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| unit bug0139a;
 | |
|  
 | |
|  interface
 | |
|  
 | |
|  uses
 | |
|     objpas;
 | |
|  
 | |
|  type
 | |
|     SomeClass=class(TObject)
 | |
|     protected
 | |
|     procedure doSomething; virtual;
 | |
|     end ;
 | |
|  
 | |
|  implementation
 | |
|  
 | |
|  
 | |
|  procedure SomeClass.doSomething;
 | |
|  begin
 | |
|    Writeln ('Hello from SomeClass.DoSomething');
 | |
|  end ;
 | |
| 
 | |
| end.
 | 
