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 / tw18620.pp
Size: Mime:
program tw18620;
{$mode Delphi}

{ in delphi mode ^T in the var block of class/record/object should not create
  a forward definition which must be resolved after the type section end      }

type 
  C = class
    type 
      T = integer;
    var 
      V: ^T;
  end;

begin
end.