mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
35 lines
477 B
ObjectPascal
35 lines
477 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw39742;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$ModeSwitch nestedprocvars}
|
|
{$ModeSwitch functionreferences}
|
|
|
|
type
|
|
TIntFunction = reference to function: Integer;
|
|
|
|
// Works
|
|
function FourtyTwo(const AParam: Integer): TIntFunction;
|
|
function Helper: Integer;
|
|
begin
|
|
Result := 42;
|
|
end;
|
|
begin
|
|
Result := @Helper
|
|
end;
|
|
|
|
// Error
|
|
generic function GenericFourtyTwo<T>: TIntFunction;
|
|
function Helper: Integer;
|
|
begin
|
|
Result := 42;
|
|
end;
|
|
begin
|
|
Result := @Helper
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|