fpc/tests/webtbs/tw34653.pp
florian e24449bcfd * if sub nodes of a commutative node contain conditionally executed nodes, these sub nodes might not be swapped
as this might result in some nodes not being executed, like temp. create nodes with init. code, see e.g. issue #34653, resolves #34653

git-svn-id: trunk@40934 -
2019-01-20 12:55:20 +00:00

23 lines
381 B
ObjectPascal

{ %OPT=-O2 }
var d: LongInt;
begin
WriteLn;
d := 828;
if ((d mod 2) = 0) xor ((d < 0) and ((d mod 3) = 0)) then
WriteLn('YES')
else
begin
WriteLn('NO');
halt(1);
end;
if ((d mod 2) = 0) xor ((d < 0) and ((d mod 3) = 0)) then
WriteLn('YES')
else
begin
WriteLn('NO');
halt(1);
end;
end.