[Analysis API FIR]: fix a freeze on rendering of invalid type arguments

^KT-61750 fixed
This commit is contained in:
Ilya Kirillov
2023-09-06 13:46:10 +02:00
committed by Space Team
parent b41e5abcfa
commit 209d59440b
8 changed files with 47 additions and 2 deletions
@@ -0,0 +1,7 @@
interface AAA<T> {
class BBB : AAA<Int>
}
fun foo(): ERROR
@@ -0,0 +1,9 @@
import AAA.BBB
public interface AAA<T> {
class BBB : AAA<Int>
}
fun foo() : BBB<*> {
}
@@ -0,0 +1,5 @@
interface AAA<T> {
class BBB : AAA<Int>
}
fun foo(): BBB.AAA