mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 22:59:27 +02:00

tchlp50.pp+: added some more tests that yet need to be verified in Delphi git-svn-id: branches/svenbarth/classhelpers@16890 -
29 lines
288 B
ObjectPascal
29 lines
288 B
ObjectPascal
unit uchlp51c;
|
|
|
|
{$ifdef fpc}
|
|
{$mode objfpc}{$H+}
|
|
{$endif}
|
|
|
|
interface
|
|
|
|
uses
|
|
uchlp51a;
|
|
|
|
type
|
|
TFooHelper2 = class helper for TFoo
|
|
function AccessTest: Integer;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
uchlp51b;
|
|
|
|
function TFooHelper2.AccessTest: Integer;
|
|
begin
|
|
Result := Test;
|
|
end;
|
|
|
|
end.
|
|
|