浏览代码

no message

florian 20 年之前
父节点
当前提交
a0ef339646
共有 1 个文件被更改,包括 17 次插入0 次删除
  1. 17 0
      tests/webtbs/tw3777.pp

+ 17 - 0
tests/webtbs/tw3777.pp

@@ -0,0 +1,17 @@
+{ Source provided for Free Pascal Bug Report 3777 }
+{ Submitted by "David Fuchs" on  2005-03-12 }
+{ e-mail: [email protected] }
+{$mode delphi}
+{$T+}
+type
+  mytype = record
+   myfield: ^PChar;
+   end;
+
+procedure fyl_use_ptrs(var f: mytype; var myparm);
+begin
+  f.myfield := addr(myparm);
+end;
+
+begin
+end.