mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 00:48:37 +02:00

now, and always perform short circuit boolean evaluation (also in {$b+}) git-svn-id: trunk@3745 -
11 lines
89 B
ObjectPascal
11 lines
89 B
ObjectPascal
{ %fail}
|
|
program mcbool2;
|
|
|
|
{$mode macpas}
|
|
|
|
var
|
|
a, b: longint;
|
|
begin
|
|
a := a & b;
|
|
end.
|