[Analysis API FIR]: fix a freeze on rendering of invalid type arguments
^KT-61750 fixed
This commit is contained in:
committed by
Space Team
parent
b41e5abcfa
commit
209d59440b
+7
@@ -0,0 +1,7 @@
|
||||
interface AAA<T> {
|
||||
class BBB : AAA<Int>
|
||||
}
|
||||
|
||||
fun foo(): ERROR
|
||||
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import AAA.BBB
|
||||
|
||||
public interface AAA<T> {
|
||||
class BBB : AAA<Int>
|
||||
}
|
||||
|
||||
|
||||
fun foo() : BBB<*> {
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
interface AAA<T> {
|
||||
class BBB : AAA<Int>
|
||||
}
|
||||
|
||||
fun foo(): BBB.AAA
|
||||
Reference in New Issue
Block a user