Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforeWhile2.java
2010-06-25 12:46:40 +04:00

15 lines
283 B
Java

// "Invert If Condition" "true"
class A {
public void foo() {
while (true) {
if (c) {
<caret>if (d) {
a();
break;
}
}
else if (e) {
}
}
}
}