mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 10:39:29 +02:00
14 lines
207 B
ObjectPascal
14 lines
207 B
ObjectPascal
{ 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.
|