mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00

that use explicit parentfp structs (fixes webtbs/tw17379 for llvm) git-svn-id: trunk@42100 -
35 lines
507 B
ObjectPascal
35 lines
507 B
ObjectPascal
{$mode macpas}
|
|
{$warnings off}
|
|
program recursivefunctionparam;
|
|
|
|
function first( function test( theint: integer): boolean): integer;
|
|
begin
|
|
test(2);
|
|
end;
|
|
|
|
function find: integer;
|
|
var
|
|
l: longint;
|
|
|
|
function test( theint: integer): boolean;
|
|
begin
|
|
if (theint = 1) then
|
|
first( test)
|
|
else
|
|
begin
|
|
writeln('nested procvar call, l = ', l);
|
|
if l<>1234567890 then
|
|
halt(1);
|
|
end;
|
|
find:=0;
|
|
end;
|
|
|
|
begin
|
|
l:=1234567890;
|
|
test(1)
|
|
end;
|
|
|
|
begin
|
|
find;
|
|
end.
|