IDEA-177292 No "new" keyword completion after dot

This commit is contained in:
peter
2017-08-14 16:11:54 +02:00
parent 9fe03ea3f7
commit 5ec1403c27
3 changed files with 34 additions and 0 deletions
@@ -0,0 +1,10 @@
public class Test {
public Inner getInner() {
return this.<caret>
}
public class Inner {
public void foo() {
}
}
}