disprefer unlikely interfaces in basic completion after new (IDEA-193609)

just like in smart one
This commit is contained in:
peter
2018-07-02 14:39:31 +02:00
parent 1d2ac1b682
commit 340e3aab58
3 changed files with 25 additions and 1 deletions
@@ -0,0 +1,15 @@
class Test {
Intf i = new <caret>
}
interface Intf {
void foo();
void bar();
void goo();
}
class IntfImpl implements Intf {
public void foo() {}
public void bar() {}
public void goo() {}
}