fpc/tests/webtbs/tw1851.pp
2002-09-07 15:40:30 +00:00

20 lines
198 B
ObjectPascal

{ %opt=-Sew }
{$mode objfpc}{$H+}
function A: boolean;
procedure CheckResult;
begin
if not Result then writeln('Oha');
end;
begin
Result:=false;
CheckResult;
end;
begin
A;
end.