fpc/tests/webtbs/tbug1097.pp
2000-08-24 19:15:40 +00:00

27 lines
267 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.