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 / webtbs / tw22154.pp
Size: Mime:
program tw22154;

{$MODE DELPHI}

type
  TWrapper<T> = class
    procedure Z;
  end;

procedure TWrapper<T>.Z;
const
  A0: array [0..0] of Integer = (0);     { OK }
  A1: array [0..1] of Integer = (0, 1);  { Comma not exepcted }
begin
end;

begin
end.