IDEA-124712 ctrl-alt-space: duplicate completion variants

This commit is contained in:
peter
2014-05-16 16:51:39 +02:00
parent 83a2697042
commit 57b759ffa1
3 changed files with 26 additions and 2 deletions
@@ -0,0 +1,15 @@
public class Foo {
void foo() {
Zoo z = xcreate<caret>x
}
}
class Zoo { }
class ZooFactory {
static Zoo xcreateZoo() {}
static Zoo xcreateZoo(int a) {}
static Object xcreateElephant() {}
}