fpc/tests/webtbs/uw25132.pp
svenbarth c077adf499 Fix for Mantis #25132
defcmp.pas, objectdef_is_related:
  * use "equal_defs" instead of "=", as the former also handles equivalence of specializations

+ added test

git-svn-id: trunk@25848 -
2013-10-25 19:50:56 +00:00

30 lines
423 B
ObjectPascal

unit uw25132;
{$ifdef fpc}
{$mode delphi}
{$endif}
interface
type
TIterator<TElement> = class(TObject)
public
function GetValue(): Integer; virtual; abstract;
end;
TCollectionIterator = class(TIterator<TObject>)
public
function GetValue(): Integer; override;
end;
implementation
{ TCollectionIterator }
function TCollectionIterator.GetValue(): Integer;
begin
Result := 1;
end;
end.