59f70a912a
#KT-16907 Fixed
15 lines
271 B
Kotlin
Vendored
15 lines
271 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
|
|
fun coroutine(block: suspend () -> Unit) {}
|
|
|
|
suspend fun testAction(obj: Any, action: suspend (Any) -> Unit) {
|
|
action(action)
|
|
}
|
|
|
|
fun println(message: Any?) {}
|
|
|
|
fun main() = coroutine {
|
|
testAction("OK") {<caret>
|
|
println(it)
|
|
}
|
|
} |