tb0095.pp 398 B

12345678910111213141516
  1. { Old file: tbs0113.pp }
  2. { point initialization problems OK 0.99.1 (PM/FK) }
  3. program test;
  4. type pRecord = ^aRecord;
  5. aRecord = record
  6. next : pRecord;
  7. a, b, c : integer;
  8. end;
  9. const rec1 : aRecord = (next : nil; a : 10; b : 20; c : 30);
  10. rec2 : aRecord = (next : @rec1; a : 20; b : 30; c : 40);
  11. begin
  12. end.