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

25 lines
265 B
ObjectPascal

{$H+}
type
Tsome = Record
One,Two,Three:String;
end;
Procedure passhere(Some:TSome;onemore:String);
Begin
end;
procedure fromhere;
Var
me:Tsome;
Begin
me.one:='blah';
me.two:='';
me.three:='';
passhere(Me,'text some');
end;
begin
fromhere;
end.