fpc/tests/webtbs/tw10863.pp
Jonas Maebe 78f96e857c + test for mantis #10863
git-svn-id: trunk@10717 -
2008-04-19 17:19:30 +00:00

23 lines
226 B
ObjectPascal

function f(b,c,d : boolean) : longint;
begin
f:=ord(b);
end;
procedure test;
var
b,c : boolean;
begin
b:=true;
c:=false;
b:=1<>f(b,not(b),c);
c:=true;
if (b) then
halt(1);
writeln(c);
end;
begin
test;
end.