K2: Don't use FirTypeParameterSymbol.resolvedBounds() from inference

This commit is contained in:
Mikhail Glukhikh
2022-11-18 18:37:09 +01:00
committed by Space Team
parent e57521ed23
commit df5aa59185
7 changed files with 464 additions and 6 deletions
@@ -0,0 +1,9 @@
open class Foo<T : CharSequence>
fun bar(): Foo<String>? {
return null
}
fun resolveMe() {
val x = bar()
}