mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 02:01:46 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			161 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			161 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| unit methodjump1; 
 | |
| 
 | |
| {$mode objfpc}{$H+}
 | |
| 
 | |
| interface
 | |
| 
 | |
| uses
 | |
|   Classes, SysUtils;
 | |
| 
 | |
| procedure DoSomething;
 | |
| 
 | |
| implementation
 | |
| 
 | |
| procedure DoSomething;
 | |
| begin
 | |
| 
 | |
| end;
 | |
| 
 | |
| end.
 | |
| 
 | 
