IDEA-57403 Completion cannot suggest members of an intersection type

This commit is contained in:
peter
2011-03-03 20:07:58 +01:00
parent d783a84360
commit 893c24c52f
3 changed files with 27 additions and 0 deletions
@@ -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>
}
}