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

11 lines
180 B
Java

class C {
void m() {
if (true) {
new Runnable() {};
}
int a = 1;<caret>
if (true) {
new Runnable() {};
}
}
}