fpc/tests/tbf/tb0025.pp
2000-12-03 21:50:07 +00:00

15 lines
217 B
ObjectPascal

{ %FAIL }
{ Old file: tbf0151.pp }
{ crash when using undeclared variable in withstatement OK 0.99.7 (PFV) }
type tr = record
l1, l2: longint
end;
var r: tr;
begin
with r do
inc(l)
end.