mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
members declared in the qualifier class go first in the completion list (IDEA-13030)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
class Foo {
|
||||
void fromSuper() {}
|
||||
void overridden() {}
|
||||
}
|
||||
|
||||
class FooImpl extends Foo {
|
||||
void overridden() {}
|
||||
void fromThis() {}
|
||||
}
|
||||
|
||||
class Bar {
|
||||
{
|
||||
new FooImpl().<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user