Files
openide/java/java-tests/testData/refactoring/extractMethod/ExitPoints3.java
Dmitry Jemerov b7e66aee44 test++
2009-09-10 20:21:16 +04:00

11 lines
147 B
Java

class Test{
void foo() {
if (cond1){
<selection>if (cond2) return;
x();</selection>
}
else if (cond3){
}
}
}