fpc/tests/tbs/tb0240.pp
peter 06c7671945 * changed $ifdefs to %target
* removed obsolete dpmiexcp unit for go32v2
2002-12-24 22:31:26 +00:00

47 lines
759 B
ObjectPascal

{ Old file: tbs0280.pp }
{ problem with object finalization. OK 0.99.13 (FK) }
{$mode objfpc}
{$H+}
program memhole;
type
TMyClass = class
s: String;
end;
plongint = ^longint;
procedure dotest;
var
c: TMyClass;
s : string;
begin
s:='world';
s:='Hallo '+s;
writeln((plongint(s)-4)^);
c := TMyClass.Create;
writeln(longint(c.s));
c.s := Copy('Test', 1, 4);
writeln((plongint(c.s)-4)^);
c.free;
end;
var
membefore : longint;
begin
membefore:=memavail;
writeln(memavail);
dotest;
writeln(memavail);
if membefore<>memavail then
begin
Writeln('Memory hole using ansi strings in classes');
Halt(1);
end
else
Writeln('No memory hole unsing ansi strings in classes');
end.