fpc/tests/webtbs/tbug776.pp
2000-01-10 00:40:27 +00:00

16 lines
216 B
ObjectPascal

{$mode objfpc}
uses sysutils;
var i:integer;
j : record
x,y : longint;
end;
begin
i:=0;
format('%d', [i]);
with j do
begin
x:=2;
y:=4;
Writeln('j.x=',x,' j.y=',y);
end;
end.