IDEA-CR-12743, IDEA-157088 The autocomplete to offer not only the implementation of the interface, but the interface itself (when Object arrays are expected)

This commit is contained in:
peter
2016-08-17 16:24:56 +02:00
parent fa1e9e3704
commit 1368f7e7bb
3 changed files with 16 additions and 1 deletions
@@ -0,0 +1,8 @@
interface MyIntf {}
void foo(MyIntf i){}
void foo(Object[] array){}
void test() {
foo(new MyIntf<caret>)
}