fpc/tests/test/tmcbool2.pp
Jonas Maebe 03302dc7c4 * fixed support for macpas & and | operators: they only work on booleans
now, and always perform short circuit boolean evaluation (also in {$b+})

git-svn-id: trunk@3745 -
2006-05-30 13:02:36 +00:00

11 lines
89 B
ObjectPascal

{ %fail}
program mcbool2;
{$mode macpas}
var
a, b: longint;
begin
a := a & b;
end.