mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
15 lines
106 B
ObjectPascal
15 lines
106 B
ObjectPascal
{$mode tp}
|
|
|
|
type
|
|
tproc=procedure;
|
|
var
|
|
p : tproc;
|
|
|
|
function f:tproc;
|
|
begin
|
|
exit(p);
|
|
end;
|
|
|
|
begin
|
|
end.
|