mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
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:
+8
@@ -0,0 +1,8 @@
|
||||
interface MyIntf {}
|
||||
|
||||
void foo(MyIntf i){}
|
||||
void foo(Object[] array){}
|
||||
|
||||
void test() {
|
||||
foo(new MyIntf<caret>)
|
||||
}
|
||||
Reference in New Issue
Block a user