tb0035.pp 214 B

123456789101112131415
  1. { %FAIL }
  2. { Old file: tbf0172.pp }
  3. { with with absolute seg:ofs should not be possible OK 0.99.9 (PM) }
  4. type
  5. rec=record
  6. a : longint;
  7. end;
  8. var
  9. r1 : rec absolute $40:$49;
  10. begin
  11. with r1 do
  12. a:=1;
  13. end.