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