fpc/tests/webtbs/tw3777.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

18 lines
304 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 3777 }
{ Submitted by "David Fuchs" on 2005-03-12 }
{ e-mail: drfuchs@yahoo.com }
{$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.