members declared in the qualifier class go first in the completion list (IDEA-13030)

This commit is contained in:
peter
2011-02-07 12:49:27 +01:00
parent 158364953b
commit 456b8d2356
5 changed files with 29 additions and 13 deletions
@@ -0,0 +1,15 @@
class Foo {
void fromSuper() {}
void overridden() {}
}
class FooImpl extends Foo {
void overridden() {}
void fromThis() {}
}
class Bar {
{
new FooImpl().<caret>
}
}