// "Bring 'String con' into Scope" "true" class a { private void ffff(String c){ try { String con = null; } finally { ffff(con); // This method doesn't mind con == null. } } }