Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/afterCommentAfterThenBlockStatement.java
2024-08-06 10:48:28 +00:00

11 lines
212 B
Java

// "Invert 'if' condition" "true"
class D {
private void f(char[] buffer) {
for (char c : buffer) {
if (false) {
continue; // THIS COMMENT DISAPPEARS
}
break;
}
}
}