fpc/tests/tbf0127.pp
1999-01-18 17:36:26 +00:00

18 lines
234 B
ObjectPascal

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