fpc/bugs/bug0127.pp
1998-04-07 14:45:53 +00:00

18 lines
199 B
ObjectPascal

unit test;
interface
procedure x;
implementation
procedure crash;
begin
x; { called with pascal calling conventions }
end;
procedure x;external;cdecl;
end.