mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
15 lines
228 B
Java
15 lines
228 B
Java
// "Add 'catch' clause(s)" "true-preview"
|
|
class a {
|
|
void g() throws Exception {
|
|
}
|
|
|
|
// initializer
|
|
{
|
|
try {
|
|
// comment before
|
|
<caret>g();
|
|
// comment after
|
|
}
|
|
}
|
|
}
|