mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:18:18 +02:00
22 lines
211 B
ObjectPascal
22 lines
211 B
ObjectPascal
unit uanonfunc21;
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch functionreferences}
|
|
|
|
interface
|
|
|
|
type
|
|
tproc = reference to procedure;
|
|
|
|
procedure bar(p: tproc);
|
|
|
|
implementation
|
|
|
|
procedure bar(p: tproc);
|
|
begin
|
|
p();
|
|
end;
|
|
|
|
end.
|
|
|