tw1850.pp 230 B

123456789101112
  1. { Source provided for Free Pascal Bug Report 1850 }
  2. { Submitted by "Sebastian Günther" on 2002-03-06 }
  3. { e-mail: [email protected] }
  4. type
  5. TMyRecord = record
  6. a, b: Integer;
  7. end;
  8. var
  9. r: TMyRecord;
  10. begin
  11. with r do;
  12. end.