mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-07 00:36:13 +02:00
18 lines
149 B
ObjectPascal
18 lines
149 B
ObjectPascal
unit PublishedMethods2;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
type
|
|
T = integer;
|
|
Point = record end;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|