fpc/tests/tbf0208.pp
1999-01-27 12:47:57 +00:00

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.