fpc/tests/webtbs/tw40643.pp
J. Gareth "Curious Kit" Moreton afd63ef0ce * New test for
2024-02-18 15:37:27 +00:00

12 lines
161 B
ObjectPascal

{ %OPT=-O1 }
program tw40643;
var
a: integer = 1;
b: integer = 1;
begin
if (a < 1) or ((a = 1) and (a = b)) then Exit;
WriteLn('Fail');
Halt(1);
end.