mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 10:28:16 +02:00

* additionally implicit calling conventions of cdecl or mwpascal now work as well * adjusted tests + added tests Note: the generator for packages/univint needs to be fixed, until then building on macOS will be broken git-svn-id: trunk@43684 -
17 lines
209 B
ObjectPascal
17 lines
209 B
ObjectPascal
{ %FAIL }
|
|
{ %target=darwin,iphonesim}
|
|
{ %skipcpu=powerpc,powerpc64 }
|
|
|
|
program tblock3b;
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch cblocks}
|
|
|
|
type
|
|
{$calling stdcall}
|
|
tblock = reference to procedure; cblock;
|
|
|
|
begin
|
|
|
|
end.
|