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 / tw19277.pp
Size: Mime:
program TNP;
{$mode objfpc}{$H+}
{$modeswitch nestedprocvars}
type
  generic GenericA<T>=class
   private
    type
      TIteratorfunction = procedure (const x:T) is nested;
      // Fatal: Syntax error, ";" expected but "is" found
   var private
  end;
  TSpec=specialize GenericA<integer>;

begin
end.