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 / webtbf / tw2787.pp
Size: Mime:
{ %fail }

{$mode objfpc}

Type tClass1=Class
       Public
        Constructor Init;Virtual;
     End;

Type tClass2=Class(tClass1)
       Public
        Constructor Init;Override;Virtual;Overload;
     End;

Constructor tClass1.Init;
Begin
   Inherited Create;
End;

Constructor tClass2.Init;
Begin
   Inherited Init;
End;

Begin
End.