mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
20 lines
204 B
ObjectPascal
20 lines
204 B
ObjectPascal
unit umshlp15a;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
type
|
|
THelperA = class helper for TObject
|
|
function Test: LongInt;
|
|
end;
|
|
|
|
implementation
|
|
|
|
function THelperA.Test: LongInt;
|
|
begin
|
|
Result := 1;
|
|
end;
|
|
|
|
end.
|