mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00

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 -
67 lines
1.3 KiB
ObjectPascal
67 lines
1.3 KiB
ObjectPascal
program tw25132;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE DELPHI}
|
|
{$ENDIF}
|
|
|
|
uses
|
|
uw25132;
|
|
|
|
type
|
|
TAnotherIterator = class(TIterator<TObject>)
|
|
public
|
|
function GetValue(): Integer; override;
|
|
end;
|
|
|
|
TCollection = class(TObject)
|
|
private
|
|
function CreateAnotherIterator(): TIterator<TObject>; virtual;
|
|
function CreateIterator(): TIterator<TObject>; virtual;
|
|
end;
|
|
|
|
{ TAnotherIterator }
|
|
|
|
function TAnotherIterator.GetValue(): Integer;
|
|
begin
|
|
Result := 2;
|
|
end;
|
|
|
|
{ TCollection}
|
|
|
|
function TCollection.CreateAnotherIterator(): TIterator<TObject>;
|
|
begin
|
|
Result := TAnotherIterator.Create();
|
|
end;
|
|
|
|
function TCollection.CreateIterator(): TIterator<TObject>;
|
|
begin
|
|
Result := TCollectionIterator.Create();
|
|
end;
|
|
|
|
var
|
|
CollectionIterator: TCollectionIterator;
|
|
AnotherIterator: TAnotherIterator;
|
|
begin
|
|
CollectionIterator := TCollectionIterator.Create();
|
|
AnotherIterator := TAnotherIterator.Create();
|
|
|
|
if CollectionIterator.GetValue() = 1 then
|
|
WriteLn('Collection iterator: OK')
|
|
else
|
|
begin
|
|
WriteLn('Collection iterator: FAILED');
|
|
Halt(1);
|
|
end;
|
|
|
|
if AnotherIterator.GetValue() = 2 then
|
|
WriteLn('Another iterator: OK')
|
|
else
|
|
begin
|
|
WriteLn('Another iterator: FAILED');
|
|
Halt(1);
|
|
end;
|
|
|
|
CollectionIterator.Free();
|
|
AnotherIterator.Free();
|
|
end.
|