mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-21 05:03:54 +07:00
11 lines
231 B
Java
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 {
|
|
}
|
|
}
|
|
} |