mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 10:51:25 +07:00
IDEA-57403 Completion cannot suggest members of an intersection type
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
interface IA{
|
||||
void fooa();
|
||||
}
|
||||
|
||||
interface IB{
|
||||
void foob();
|
||||
}
|
||||
|
||||
interface IC<T extends IA>{
|
||||
T c();
|
||||
}
|
||||
|
||||
class K {
|
||||
void foo(IC<? extends IB> x){
|
||||
x.c().fo<caret>
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user