IDEA-155984 Completion suggests nothing if you try to complete a variable before a call

This commit is contained in:
peter
2016-05-13 16:15:16 +02:00
parent d8093d9057
commit d91c606bfa
3 changed files with 19 additions and 2 deletions
@@ -0,0 +1,9 @@
class A {
int myField;
int myField2;
A() {
myF<caret> initField();
}
int initField(){return 2;}
}