Browse Source

* new(precord) test

peter 24 years ago
parent
commit
73d31da1ef
1 changed files with 14 additions and 0 deletions
  1. 14 0
      tests/tbs/tb0338.pp

+ 14 - 0
tests/tbs/tb0338.pp

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