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

9 lines
158 B
Java

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