IDEA-152354 Code completion items order should be aware of MyClass.class

This commit is contained in:
peter
2016-04-19 14:00:30 +02:00
parent a4aa1f2bd7
commit e92ee51e76
4 changed files with 13 additions and 6 deletions
@@ -20,6 +20,6 @@ interface Super
interface Sub extends Super {
default void foo() {
Super.<caret>
Super.s<caret>
}
}
@@ -0,0 +1,8 @@
class Log {
{
getLogger(Log.<caret>)
}
Log getLogger(Class clazz) {
return null;
}
}