mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-21 16:57:08 +07:00
10 lines
211 B
Java
10 lines
211 B
Java
class Test {
|
|
void foo() {
|
|
try {
|
|
// This is comment"
|
|
int i = 1;
|
|
} catch (Exception e) {
|
|
<caret><selection>e.printStackTrace();</selection>
|
|
}
|
|
}
|
|
} |