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 / tw26482.pp
Size: Mime:
unit tw26482;

{$mode delphi}

interface

type
  TEnumerator<T> = class
  end;

  TList<T> = class
  public
    type
      TEnumerator = class(TObject);
  protected
    function DoGetEnumerator: TEnumerator<T>;
  end;

implementation

function TList<T>.DoGetEnumerator: TEnumerator<T>; // Error: Identifier not found "TEnumerator$1"
begin
end;

end.