fpc/tests/webtbs/tw10979.pp
Jonas Maebe 8adc596c16 - revert fix for #10927: the old behaviour was Delphi compatible,
and the fix caused other problems (#10979)

git-svn-id: trunk@10464 -
2008-03-08 18:17:31 +00:00

44 lines
928 B
ObjectPascal

{$ifdef fpc}
{$mode objfpc}
{$endif fpc}
uses Classes;
{$ifndef fpc}
type
ptruint = cardinal;
{$endif}
type
TMyStringList = class(TStringList)
private
function GetObjects(Index: Integer): TStringList;
procedure SetObjects(Index: Integer; const Value: TStringList);
public
property Objects[Index: Integer]: TStringList read GetObjects write SetObjects;
end;
function TMyStringList.GetObjects(Index: Integer): TStringList;
begin
Result := TStringList(inherited Objects[Index]);
end;
procedure TMyStringList.SetObjects(Index: Integer; const Value: TStringList);
begin
writeln('setobjects called');
inherited Objects[Index] := Value;
end;
var
SL: TMyStringList;
begin
SL := TMyStringList.Create;
SL.AddObject('Hello',SL);
WriteLn(SL[0],':',PtrUint(SL.Objects[0]),':',PtrUint(SL));
if (sl[0]<>'Hello') or
(PtrUint(SL.Objects[0])<>PtrUint(SL)) then
halt(1);
end.