mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00

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 -
52 lines
712 B
ObjectPascal
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.
|
|
|