fpc/tests/webtbs/tw22344.pp
Jonas Maebe 1b3b097f3a * always interpret a function name on the RHS as a recursive function
call in MacPas mode, like in TP/Delphi (mantis #22344)

git-svn-id: trunk@21817 -
2012-07-08 09:52:30 +00:00

25 lines
285 B
ObjectPascal

program showbug ;
{$mode macpas}
var
glob: integer;
function countchars: INTEGER ;
begin
countchars:=255;
if glob=5 then
countchars := 0
else
begin
inc(glob);
countchars := 1 + countchars
end
end;
begin
if countchars<>5 then
halt(1);
end .