Files
kotlin-fork/analysis/low-level-api-fir/testdata/lazyResolve/functions/functionCallWithGenericResult.kt
T

10 lines
117 B
Kotlin

open class Foo<T : CharSequence>
fun bar(): Foo<String>? {
return null
}
fun resolveMe() {
val x = bar()
}