Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/suspendFunctionParameter2.kt
T
2020-05-27 02:38:39 +09:00

7 lines
104 B
Kotlin
Vendored

fun foo(a: suspend () -> Unit) {}
suspend fun action() {}
fun usage() {
foo { action() <caret> }
}