Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/beforePreserveComments.java
2016-08-15 21:36:41 +03:00

8 lines
148 B
Java

// "Invert 'if' condition" "true"
class A {
public void foo() {
<caret>if (c) { //comments to restore
a();
}
}
}