mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 07:38:11 +02:00
15 lines
207 B
ObjectPascal
15 lines
207 B
ObjectPascal
{ %FAIL }
|
|
{ %TARGET=darwin,iphonesim,ios}
|
|
|
|
program tblock8;
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch cblocks}
|
|
{$modeswitch functionreferences-}
|
|
|
|
type
|
|
TBlock = reference to procedure(aArg: LongInt); cdecl;
|
|
|
|
begin
|
|
end.
|