Files
openide/java/java-tests/testData/codeInsight/moveStatementAction/statementInCatchSection.java
Dmitry Jemerov 285a5acd66 Move Java-specific part of MoveStatementUpDownTest to java-tests module
GitOrigin-RevId: fd3331c90f28706c98d60134126defb1355e595b
2022-05-13 18:58:38 +00:00

13 lines
228 B
Java

class StatementInCatchSection {
void x() {
try {
} catch (ClassNotFoundException e) {
} catch (IOException e) {
<caret>e.printStackTrace();
} catch (Error e) {
}
}
}