mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 05:48:34 +02:00
29 lines
204 B
ObjectPascal
29 lines
204 B
ObjectPascal
unit
|
|
uw27294;
|
|
|
|
interface
|
|
|
|
procedure global;
|
|
|
|
implementation
|
|
|
|
var
|
|
p : procedure;
|
|
|
|
procedure test;
|
|
|
|
begin
|
|
p:=@test;
|
|
writeln('OK');
|
|
end;
|
|
|
|
procedure global;
|
|
begin
|
|
p:=nil;
|
|
test;
|
|
p();
|
|
end;
|
|
|
|
end.
|
|
|