mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00
18 lines
199 B
ObjectPascal
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.
|