mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
functional type: find common super type of intersection type's conjuncts (IDEA-144145)
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
interface Z {
|
||||
void m();
|
||||
}
|
||||
|
||||
interface X extends Z {}
|
||||
interface Y extends Z {}
|
||||
|
||||
class Test {
|
||||
{
|
||||
((X & <caret>Y) () -> {}).m();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user