fpc/tests/webtbs/tw10831.pp
florian 7899954fa9 * fixed test
git-svn-id: trunk@11066 -
2008-05-24 07:20:08 +00:00

17 lines
212 B
ObjectPascal

{$mode objfpc}
program test;
type
TForm = class(TInterfacedObject)
a : array[0..1000000] of byte;
end;
TMyForm = class(TForm, IInterface)
end;
var
i : IInterface;
begin
i:=TMyForm.Create;
end.