mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 14:53:42 +02:00
18 lines
330 B
ObjectPascal
18 lines
330 B
ObjectPascal
program bug0209;
|
|
|
|
{ problem with boolean expression mixing different boolean sizes }
|
|
|
|
var
|
|
b : boolean;
|
|
wb : wordbool;
|
|
lb : longbool;
|
|
begin
|
|
b:=true;
|
|
wb:=true;
|
|
lb:=true;
|
|
if (not b) or (not wb) or (not lb) then
|
|
begin
|
|
Writeln('Error with boolean expressions of different sizes');
|
|
Halt(1);
|
|
end;
|
|
end. |