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 / tw20003.pp
Size: Mime:
{ %skiptarget=aix }
{ %opt=-gs }
program ustabslink;

{$mode objfpc}{$H+}

uses
  Classes, SysUtils, fgl;

type
  TMyClass = class end;
  TControlObjectSpecializedWithAVeryLongNameOfClass = class end;

  TMyType = TControlObjectSpecializedWithAVeryLongNameOfClass;  // Error

  TSpecControlInfo = specialize TFPGList<TMyType>;

begin
end.