fpc/tests/webtbs/tw11896.pp
Jonas Maebe 5feba9b3d7 * also free memory when a destructor is called without an explicit
instance reference (mantis 11896)
  * fixed double destructor call in tests/test/cg/tcalcla1.pp which
    caused an error after this change

git-svn-id: trunk@11599 -
2008-08-17 12:38:41 +00:00

52 lines
712 B
ObjectPascal

program destroytest;
{$mode delphi}
type
TTest = class(TObject)
a: array[0..32767] of Integer;
procedure x;
procedure y;
procedure beforedestruction;override;
end;
var
testobj: TTest;
destroyed: boolean;
procedure TTest.beforedestruction;
begin
destroyed:=true;
inherited beforedestruction;
end;
procedure TTest.x;
begin
Destroy;
end;
procedure TTest.y;
begin
Self.Destroy;
end;
function GetUsedMemory: Integer;
begin
Result := GetHeapStatus.TotalAllocated;
end;
begin
testobj := TTest.create;
destroyed:=false;
testobj.x;
if not destroyed then
halt(1);
destroyed:=false;
testobj := TTest.create;
testobj.y;
if not destroyed then
halt(2);
end.