Files
openide/java/java-tests/testData/refactoring/extractMethod/SingleExitPOintWithTryFinally.java

12 lines
167 B
Java

class C {
private void foo() {
System.out.println();
<selection>try {}
finally {
while (true) {
break;
}
}
</selection>
}
}