fpc/tests/tbs/tb0454.pp
Jonas Maebe 4b907b7c5e + added
2003-07-21 13:04:40 +00:00

34 lines
640 B
ObjectPascal

program tb0454;
{ reported on fpc-devel by Jesus Reyes <jesusrmx@yahoo.com.mx> on 14 July 2003 }
{ as failing with 1.1 }
{$mode objfpc}
var
a,b: integer;
c,d,e,f: boolean;
function Ok: boolean;
begin
result := ( a = b )
and c = d
and e = f;
end;
var
r: boolean;
begin
a := 1;
b := 2;
c := false;
d := true;
e := false;
f := true;
r := Ok;
if not r then
begin
writeln('error, result should be true');
halt(1);
end;
end.