IDEA-138061 Prefer "return" completion suggestion before the last expression in a code block

This commit is contained in:
peter
2015-03-24 16:32:25 +01:00
parent 409070a176
commit 1a014a13e8
3 changed files with 28 additions and 1 deletions
@@ -0,0 +1,10 @@
public class Test {
int rMethod() {}
int foo(int rParam) {
Object rLocal;
r<caret> rMethod();
}
}