tb0213.pp 228 B

123456789101112131415161718192021
  1. { Old file: tbs0252.pp }
  2. { typecasting not possible within typed const OK 0.99.13 (PFV) }
  3. type
  4. wnd=procedure;
  5. r=record
  6. w : wnd;
  7. end;
  8. procedure p;
  9. begin
  10. end;
  11. const
  12. r1:r=(
  13. w : wnd(@p);
  14. );
  15. begin
  16. end.