KT-11957 No "catch" and "finally" keywords in completion

#KT-11957 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-04-18 22:42:10 +03:00
parent c7a96401da
commit 022075995b
10 changed files with 153 additions and 20 deletions
@@ -0,0 +1,10 @@
fun t() {
while (true) {
try {
}
f<caret>
}
}
// ELEMENT: finally
@@ -0,0 +1,12 @@
fun t() {
while (true) {
try {
}
finally {
<caret>
}
}
}
// ELEMENT: finally