mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-05 00:04:14 +02: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.
|
|
|