f7a69d4aa7
#KT-34378 Fixed
7 lines
104 B
Kotlin
Vendored
7 lines
104 B
Kotlin
Vendored
fun foo(a: suspend () -> Unit) {}
|
|
|
|
suspend fun action() {}
|
|
|
|
fun usage() {
|
|
foo { action() <caret> }
|
|
} |