Files
openide/java/java-tests/testData/codeInsight/generation/surroundWith/java/CommentAsFirstTryCatchFinallySurroundStatement_after.java
T
2013-05-06 20:55:21 +02:00

11 lines
231 B
Java

class Test {
void foo() {
try {
// This is comment"
int i = 1;
} catch (Exception e) {
<caret><selection>e.printStackTrace();</selection>
} finally {
}
}
}