[java] don't check poly rExpression from assignment to avoid poly expression type calculation during overload resolution

EA-434232 - T: PsiMethodCallExpressionImpl$TypeEvaluator.fun

GitOrigin-RevId: f8eca5cf007c2d453cafbcc5f72215f7c91daf39
This commit is contained in:
Anna Kozlova
2022-06-30 06:57:11 +02:00
committed by intellij-monorepo-bot
parent 367e758f74
commit 665998b55c
3 changed files with 20 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
class Demo {
void foo(String s) {}
<T> T bar() {
return null;
}
{
f<caret>oo(unresolvedLefySide = bar());
}
}