IDEA-119983 Smart type completion mixes order for Color.RED

This commit is contained in:
peter
2014-01-29 19:40:25 +01:00
parent 589208ff99
commit 4037871a23
8 changed files with 46 additions and 18 deletions
@@ -0,0 +1,14 @@
class MyColor {
static final MyColor RED = null;
}
class Another {
static final MyColor RED = null;
}
class Foo {
public static final MyColor MARKED_BACKGROUND = new MyColor();
{
MyColor color = RED<caret>
}
}