* new(precord) test

This commit is contained in:
peter 2001-02-02 22:51:15 +00:00
parent 423463630c
commit 73d31da1ef

14
tests/tbs/tb0338.pp Normal file
View File

@ -0,0 +1,14 @@
{$h+}
Type
TMyRec = Record
AString : AnsiString;
end;
PMyRec = ^TMyRec;
Var
M : PMyRec;
begin
M:=New(PmyRec);
end.