Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / tbf / tb0239.pp
Size: Mime:
{ %FAIL }
program tb0239;

{$MODE objfpc}

type
  TMyClass = class
    function GetMyProperty(Index: Integer): Integer;
    property MyProperty: Integer index 10000000000000000 read GetMyProperty;
  end;

function TMyClass.GetMyProperty(Index: Integer): Integer;
begin
  Result := 10;
end;

begin
end.