AA: handle erroneous type in nested type argument

This commit is contained in:
Jinseong Jeon
2022-11-10 22:50:08 -08:00
committed by Ilya Kirillov
parent ac514849f4
commit fcba1f215a
9 changed files with 57 additions and 15 deletions
@@ -0,0 +1,9 @@
class A<T>
class B<T1, T2>
class C {
fun foo<caret>() = object : B<String, A<Unknown>> {
}
}
@@ -0,0 +1,2 @@
KtType: B<kotlin.String, A<Unknown>>
PsiType: null