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

{ overriding methods is forbidden in mode objfpc }
program thlp6;

{$ifdef fpc}
  {$mode objfpc}
{$endif}

uses
  uhlp3;

type
  TObjectHelperSub = class helper(TObjectHelper) for TObject
    procedure TestFinal; override; final;
  end;

procedure TObjectHelperSub.TestFinal;
begin
end;

begin
end.