IDEA-151470 Autocomplete not suggesting after finally block

This commit is contained in:
peter
2016-02-11 12:18:35 +01:00
parent d4d21bebf8
commit 15a7d36b6e
4 changed files with 19 additions and 10 deletions
@@ -0,0 +1,7 @@
public class Test {
void fooBarGoo() {
try {}
finally {}
fbg<caret>
}
}
@@ -0,0 +1,7 @@
public class Test {
void fooBarGoo() {
try {}
finally {}
fooBarGoo();<caret>
}
}