mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 01:09:35 +02:00
25 lines
299 B
ObjectPascal
25 lines
299 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tfuncref40;
|
|
|
|
{$mode objfpc}
|
|
{$ModeSwitch functionreferences}
|
|
|
|
type
|
|
TFuncRef = reference to function: LongInt;
|
|
|
|
generic function Test<T>(var aArg: LongInt): TFuncRef;
|
|
|
|
function TestSub: LongInt;
|
|
begin
|
|
Result := aArg;
|
|
end;
|
|
|
|
begin
|
|
Result := @TestSub;
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|