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.2.0 / tests / webtbs / tw24872.pp
Size: Mime:
{ %NORUN }

program tw24872;

{$mode delphi}

procedure Test;
begin
end;

type
  TRec<T> = record {for generic class is ok, and non generic record too}
    procedure Foo;
  end;

procedure TRec<T>.Foo;
begin
  Test
end; // Error: Global Generic template references static symtable

begin
end.