fpc/tests/webtbs/tw34037.pp
florian f8e55c4350 -- Zusammenführen von r39934 in ».«:
U    compiler/defcmp.pas
U    compiler/node.pas
U    compiler/pexpr.pas
A    tests/webtbs/tw34037.pp
-- Aufzeichnung der Informationen für Zusammenführung von r39934 in ».«:
 U   .

git-svn-id: branches/fixes_3_2@47421 -
2020-11-15 14:05:21 +00:00

22 lines
341 B
ObjectPascal

program project1;
{$mode objfpc}{$H+}
uses
Classes, FGL;
type
TBaseClass = class (TObject)
end;
generic TFPGObjectListEx<T: TBaseClass> = class (specialize TFPGObjectList<T>)
function GetItemByID(AID: Integer): T;
end;
function TFPGObjectListEx.GetItemByID(AID: Integer): T;
begin
Result:=nil; //T(nil);
end;
begin
end.