tb0015.pp 218 B

123456789101112131415
  1. { Old file: tbs0018.pp }
  2. { tests for the possibility to declare all types using pointers "forward" : type p = ^x; x=byte; OK 0.9.3 }
  3. type
  4. p = ^x;
  5. x = byte;
  6. var
  7. b : p;
  8. begin
  9. new(b);
  10. b^:=12;
  11. end.