tb0042.pp 213 B

12345678910111213141516
  1. { Old file: tbs0047.pp }
  2. { compiling with -So crashes the compiler OK 0.99.1 (CEC) }
  3. procedure test;
  4. begin
  5. end;
  6. var
  7. p1 : procedure;
  8. p2 : pointer;
  9. begin
  10. p1:=@test;
  11. p2:=@test;
  12. end.