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

program tw26193;

{$mode delphi}

type
  TA<T> = class
    function Foo: Boolean; virtual; abstract;
  end;

  TB<T> = class(TA<byte>)
    // Missing (!) error: There is no method in an ancestor class to be overridden: "Foo;"
    procedure Foo; override;
  end;

procedure TB<T>.Foo;
begin
end;

begin
end.