fpc/bugs/bug0208.pp
1999-01-27 11:18:53 +00:00

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.