Files
openide/java/java-tests/testData/codeInsight/moveStatementAction/complexCondition.java
2022-05-13 18:58:38 +00:00

18 lines
211 B
Java

class CL {
void g() {
int k;
while (
1==1
&& true
)
{
int j = <caret>0;
// comment
}
j1 = 0;
}
}