Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/emptyStatement/beforeIf.java
T
2020-01-22 06:03:40 +00:00

7 lines
106 B
Java

// "Remove statement" "true"
class Test {
void test(int x) {
i<caret>f(x > 0) //comment
{}
}
}