mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 17:59:06 +02:00
11 lines
148 B
ObjectPascal
11 lines
148 B
ObjectPascal
program bug0208;
|
|
|
|
{ implicit boolean to integer conversion should not be
|
|
allowed }
|
|
var
|
|
b : boolean;
|
|
i : longint;
|
|
begin
|
|
b:=true;
|
|
i:=b;
|
|
end. |