IDEA-157276 Code completion should disprefer primitive names in method calls

This commit is contained in:
peter
2016-09-20 17:14:01 +02:00
parent cf0763469c
commit 72f5f15010
4 changed files with 68 additions and 33 deletions
@@ -0,0 +1,16 @@
class Xxx extends Super {
void mm() {
bar(d<caret>)
}
void bar(Doo d) {}
static class Doo {
static Doo doo() {}
}
}
class Super {
Object dx() {}
}