// testando operador && (lado direito invalido) class m { public static void main(String[] args) { if ( true && new m() ) System.out.println(1); } }