IDEA-88975 Java constructors autocompletion doesn't work fine for non-static inner classes.

This commit is contained in:
peter
2012-07-18 14:54:11 +02:00
parent 9a8c9a3cee
commit 345c82b052
6 changed files with 30 additions and 8 deletions
@@ -0,0 +1,5 @@
class A {{
Aa a = new Aa();
Aa.B b = a.new B();<caret>
}}
@@ -0,0 +1,5 @@
class A {{
Aa a = new Aa();
Aa.B b = a.new <caret>
}}