testdata for EA-443617 T: PsiDiamondTypeImpl.resolveInferredTypesNoCheck

fixed by 5fc2f7118bf68a1d0b9f80bfcbbbfa768fc6bea8

GitOrigin-RevId: 93cfc70499f4f9cc5d8d4ccdbde1df985f1b313f
This commit is contained in:
Anna Kozlova
2022-07-11 13:21:20 +00:00
committed by intellij-monorepo-bot
parent 32194ff637
commit 205ff84754
2 changed files with 25 additions and 0 deletions
@@ -0,0 +1,16 @@
import java.util.*;
class MyTest {
<T> java.util.List<T> f(F.B ff) {
return null;
}
{
this.<String>f<caret>(new F<>.B());
}
}
class F<T> {
class B {}
}