Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/unwrapIfStatement/afterContinue.java

7 lines
128 B
Java

// "Unwrap 'if' statement" "true"
class X {
void f(){
while (true) {
continue;//comment
}
}}