Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/delegates/mapValuesLazy.kt
T

13 lines
160 B
Kotlin
Vendored

interface TDat
fun resolve(str: String): TDat = null!!
val recProp by lazy {
mapOf(
"" to ""
).mapValues {
resolve(it.value)
}
}