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 / test / thlp7.pp
Size: Mime:
{ %FAIL }

{ abstract methods are forbidden }
program thlp7;

{$ifdef fpc}
  {$mode delphi}
{$endif}

{ Note: Delphi complains that forward declaration is not solved,
        but if you add a implementation it complains that
        "abstract" is not allowed }

type
  TObjectHelper = class helper for TObject
    procedure Test; virtual; abstract;
  end;

begin
end.