summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw4136.pp
blob: 1280161f37327c05991b638196127493d5fe3597 (plain)
1
2
3
4
5
6
7
8
9
10
11
{$mode macpas}
function f: longint;
begin
  return 3;
end;

begin
  if f() <> 3 then
    halt(1);
end.