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