program bug0208; { implicit boolean to integer conversion should not be allowed } var b : boolean; i : longint; begin b:=true; i:=b; end.