mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-22 06:21:25 +07:00
[java] don't propagate ellipsis type as target type for non-vararg calls (IDEA-286407)
GitOrigin-RevId: 3693373240012db841bffaca1a5f8765200acbc8
This commit is contained in:
committed by
intellij-monorepo-bot
parent
4f882c4485
commit
e3c0d74cb6
@@ -0,0 +1,10 @@
|
||||
class Main {
|
||||
{
|
||||
bar(ge<caret>t());
|
||||
}
|
||||
|
||||
static void bar(Object... o) {}
|
||||
static <T> T get() {
|
||||
return (T) null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user