mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:48:11 +02:00
16 lines
224 B
ObjectPascal
16 lines
224 B
ObjectPascal
{ Old file: tbs0032.pp }
|
|
{ tests for a bugs with the stack OK 0.9.9 }
|
|
|
|
var
|
|
p : procedure(w : word);
|
|
|
|
procedure pp(w :word);
|
|
begin
|
|
Writeln(w);
|
|
end;
|
|
|
|
begin
|
|
p:=@pp;
|
|
p(1234);
|
|
end.
|