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 / tw18086.pp
Size: Mime:
program tw18086;

{$mode delphi}

type
  TFoo1 = class; //Error: Type "TFoo1" is not completely defined

  TFoo2 = class //it compiles if TFoo2 is removed
  type
    TFoo3 = class
    end;
  end;

  TFoo1 = class
  end;

begin
end.