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

18 lines
188 B
Java

class CL {
void g() {
int k;
if (1==1)
{
int j = 0;
int i;<caret>
}
else
{
}
j1 = 0;
}
}