mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-11 00:51:29 +07:00
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>
|
|
}
|
|
}
|
|
} |