Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / webtbs / tw12985.pp
Size: Mime:
{ %norun }

{ if the compiler is still buggy and consumed the "calling stdcall" while
  parsing the forward definition of test, it will complain about a calling
  convention mismatch when parsing the actual definition
}

{$calling cdecl}
function test(l1,l2: longint): longint; forward;
{$calling stdcall}

function test(l1,l2: longint): longint; cdecl;
begin
end;

begin
end.