Browse Source

no message

florian 20 years ago
parent
commit
a0ef339646
1 changed files with 17 additions and 0 deletions
  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.