/*** incorrect operand type for + * COMP 520 * Type Checking */ class fail30 { public static void main(String[] args) { int a = 1 + (2 < 3); } }