blob: 561cc007c24897da43c27283560dd49f56a4bcc0 [file] [log] [blame]
public class Test {
int method() {
try {
System.out.println("Text");
return 0;
} finally {
return newMethod();
}
}
private int newMethod() {
System.out.println("!!!");
return 1;
}
}