Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/inference/plusAssignWithLambdaInRhs.kt
T
2020-07-08 12:13:32 +03:00

20 lines
370 B
Kotlin
Vendored

// ISSUE: KT-39005
// !DUMP_CFG
fun test() {
val list: MutableList<(String) -> String> = null!!
list += { it }
}
class A<T>(private val executor: ((T) -> Unit) -> Unit)
fun <T> postpone(computation: () -> T): A<T> {
val queue = mutableListOf<() -> Unit>()
return A { resolve ->
queue += {
resolve(computation())
}
}
}