* also test new(precord)

This commit is contained in:
peter 2003-11-04 19:06:02 +00:00
parent f47210ad0d
commit c821c2b596

View File

@ -1,5 +1,6 @@
{$ifdef fpc}{$MODE OBJFPC }{$endif}
type
PTestRec = ^TestRec;
TestRec = record
fString : AnsiString;
fInt1 : Longint;
@ -7,9 +8,22 @@ type
fRetAddr : Longint;
end;
function GetGroupInfo: TestRec;
function GetGroupInfoP: PTestRec;
var
s : string;
begin
Result.fString := 'Test';
new(Result);
s:=' Wr';
Result^.fString := 'Test' + s;
Result^.fRetAddr := 0;
end;
function GetGroupInfo: TestRec;
var
s : string;
begin
s:=' Wr';
Result.fString := 'Test' + s;
Result.fRetAddr := 0;
end;
@ -25,14 +39,23 @@ end;
procedure destroystack;
var
s : string;
s : shortstring;
p : pchar;
i : longint;
begin
for i:=0 to 255 do
s[i]:=#$90;
s[i]:=#$90;
getmem(p,sizeof(TestRec));
for i:=0 to sizeof(TestRec)-1 do
p[i]:=#$ff;
freemem(p);
end;
var
p1 : PTestRec;
begin
// destroystack;
destroystack;
p;
p1:=GetGroupInfoP;
dispose(p1);
end.