fpc/tests/test/uchlp51a.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

21 lines
182 B
ObjectPascal

unit uchlp51a;
{$mode objfpc}{$H+}
interface
type
TFoo = class
function Test: Integer;
end;
implementation
function TFoo.Test: Integer;
begin
Result := 1;
end;
end.