This should fail with -source 1.4
public class test {
void foo() {
boolean b = true;
System.out.println( b ? 0 : false ); //<- int vs. boolean error
}}
public class test {
void foo() {
boolean b = true;
System.out.println( b ? 0 : false ); //<- int vs. boolean error
}}