소스 검색

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.