mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
15 lines
221 B
Java
15 lines
221 B
Java
// "Add Catch Clause(s)" "true"
|
|
class a {
|
|
void g() throws Exception {
|
|
}
|
|
|
|
// initializer
|
|
{
|
|
try {
|
|
// comment before
|
|
<caret>g();
|
|
// comment after
|
|
}
|
|
}
|
|
}
|