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

12 lines
151 B
Java

class CL {
void g() {
int j;
if (1 == 1)
j = 9;
j <caret>= 0;
while (j==0)
j = 2;
}
}