tb0022.pp 344 B

123456789101112131415161718192021
  1. { %FAIL }
  2. { Old file: tbf0127.pp }
  3. { problem with cdecl in implementation part OK 0.99.7 (PFV) }
  4. unit tbf0127;
  5. interface
  6. procedure x(l : longint);
  7. implementation
  8. procedure crash;
  9. begin
  10. x(1234); { called with pascal calling conventions }
  11. end;
  12. procedure x(l : longint);external;cdecl;
  13. end.