tb0035.pp 233 B

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