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 / webtbf / tw4619b.pp
Size: Mime:
{ %fail }

{ Source provided for Free Pascal Bug Report 4619 }
{ Submitted by "Christian Iversen" on  2005-12-19 }
{ e-mail: chrivers@iversen-net.dk }

{$mode delphi}

type
  TStatement = class
  end;

  TBlock = class(TStatement)
  protected
    function GetStat(const Index: LongWord): TStatement;
  public
    property Statement[const Index: Integer]: TStatement read GetStat; default;
  end;

    function TBlock.GetStat(const Index: LongWord): TStatement;
begin
end;

begin
end.