fpc/tests/test/uchlp51c.pp
svenbarth 9b6fbd330c tchlp37.pp: properties seem to be disliked by Delphi 2007 (when accessing them), so test using a function
tchlp50.pp+: added some more tests that yet need to be verified in Delphi

git-svn-id: branches/svenbarth/classhelpers@16890 -
2011-02-07 19:00:13 +00:00

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.