mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 08:27:11 +07:00
GitOrigin-RevId: 56625a1739da460bcc71712ae4ad682f2ce200c7
9 lines
129 B
Java
9 lines
129 B
Java
// "Add 'finally' block" "true-preview"
|
|
class Test {
|
|
void foo() {
|
|
try {
|
|
} finally {
|
|
<caret>
|
|
}
|
|
}
|
|
} |