fpc/tests/webtbs/tw3930.pp
Jonas Maebe ac585ea201 * fixed test according to Kylix behaviour (which means current
FPC behaviour is wrong)

git-svn-id: trunk@6851 -
2007-03-14 18:27:01 +00:00

21 lines
260 B
ObjectPascal

{$ifdef fpc}
{$mode objfpc}
{$endif}
uses
Classes;
type
TMyStringList = type TStringlist;
var
list : TMyStringList;
begin
TMyStringList.Create.Free;
if pointer(TMyStringList)<>pointer(TStringList) then
halt(1);
writeln('ok');
end.