fpc/bugs/bug0127.pp
1998-08-19 07:55:05 +00:00

18 lines
231 B
ObjectPascal

unit test;
interface
procedure x(l : longint);
implementation
procedure crash;
begin
x(1234); { called with pascal calling conventions }
end;
procedure x(l : longint);external;cdecl;
end.