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

16 lines
239 B
Java

class CL {
void g() {
int j;
if (1 == 1)
j = 9;
if (j > 10)
{
<caret>String laugh = "haha";
s = "too high";
}
else
s = "too low";
}
}