/* * make sure assignment from illegal types throws an error */ module bool_conditions; var i : integer; b : boolean; begin i := 1; b := i; end