/*** multiple error detection: incompatible types on lines 7 and 8
* COMP 520
* Type checking
*/
class fail39 {
public static void main(String [] args) {
int x = 3 > 4;
boolean b = 2 + 3;
}