mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:47:53 +02:00
31 lines
404 B
ObjectPascal
31 lines
404 B
ObjectPascal
program tanonfunc33;
|
|
|
|
{$mode delphi}
|
|
{$modeswitch anonymousfunctions}
|
|
{$modeswitch functionreferences}
|
|
|
|
{ test generic anonymous method reference }
|
|
|
|
type
|
|
TProc<T> = reference to procedure(Arg: T);
|
|
|
|
procedure Foo;
|
|
var
|
|
p: TProc<Integer>;
|
|
acc: Integer;
|
|
begin
|
|
p := procedure(Arg: Integer)
|
|
begin
|
|
Inc(acc, Arg);
|
|
end;
|
|
acc := 1;
|
|
p(2);
|
|
if acc <> 3 then
|
|
halt(1);
|
|
end;
|
|
|
|
begin
|
|
Foo;
|
|
end.
|
|
|