mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 18:53:40 +02:00
12 lines
193 B
ObjectPascal
12 lines
193 B
ObjectPascal
{ Old file: tbs0207.pp }
|
|
{ a class destructor doesn't release the memory OK 0.99.11 (FK) }
|
|
|
|
|
|
{$mode delphi}
|
|
var i : longint;
|
|
|
|
begin
|
|
for i:=1 to 100 do
|
|
tobject.create.free;
|
|
end.
|