mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 08:27:11 +07:00
GitOrigin-RevId: b8dbc546122362e256c92be5a3a696275639f2a5
11 lines
173 B
Java
11 lines
173 B
Java
// "Add 'finally' block" "true-preview"
|
|
class X {
|
|
void test() {
|
|
try {
|
|
System.out.println();
|
|
} // todo
|
|
finally {
|
|
<caret>
|
|
}
|
|
}
|
|
} |