class Test { int method() { try { if(cond1) return 0; else if(cond2) return 1; System.out.println("Text"); } finally { doSomething(); } return 12; } }