mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:47:56 +02:00
25 lines
296 B
ObjectPascal
25 lines
296 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tfuncref38;
|
|
|
|
{$mode objfpc}
|
|
{$ModeSwitch functionreferences}
|
|
|
|
type
|
|
TFuncRef = reference to function: LongInt;
|
|
|
|
function Test(aArg: array of LongInt): TFuncRef;
|
|
|
|
function TestSub: LongInt;
|
|
begin
|
|
Result := aArg[2];
|
|
end;
|
|
|
|
begin
|
|
Result := @TestSub;
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|