Add 'finally' block fix (part of IDEA-200560)

This commit is contained in:
Tagir Valeev
2018-10-17 12:16:46 +07:00
parent 04aa2fbda7
commit 3eaa3ff64f
8 changed files with 119 additions and 26 deletions

View File

@@ -0,0 +1,8 @@
// "Add 'finally' block" "true"
class Test {
void foo() {
try {
} finally {
}
}
}

View File

@@ -0,0 +1,6 @@
// "Add 'finally' block" "true"
class Test {
void foo() {
try {}<caret>
}
}